Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions codeflash/cli_cmds/init_java.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import xml.etree.ElementTree as ET
from dataclasses import dataclass
from enum import Enum, auto
from functools import cache
from pathlib import Path
from typing import Any, Union

Expand Down Expand Up @@ -55,6 +56,7 @@ class JavaSetupInfo:
benchmarks_root: Union[str, None] = None


@cache
def _get_theme():
"""Get the CodeflashTheme - imported lazily to avoid circular imports."""
from codeflash.cli_cmds.init_config import CodeflashTheme
Expand Down
Loading