Skip to content
Merged
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
4 changes: 2 additions & 2 deletions codeflash/cli_cmds/cmd_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import sys
from enum import Enum, auto
from pathlib import Path
from typing import TYPE_CHECKING, Any, cast
from typing import TYPE_CHECKING, Any, cast, Union

import click
import git
Expand Down Expand Up @@ -50,7 +50,7 @@
class SetupInfo:
module_root: str
tests_root: str
benchmarks_root: str | None
benchmarks_root: Union[str, None]
test_framework: str
ignore_paths: list[str]
formatter: str
Expand Down
Loading