Skip to content

Commit b9e8b71

Browse files
fix mypy lint error
1 parent d71d64d commit b9e8b71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codeflash/code_utils/env_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import tempfile
66
from functools import lru_cache
77
from pathlib import Path
8-
from typing import Optional
8+
from typing import Any, Optional
99

1010
from codeflash.cli_cmds.console import logger
1111
from codeflash.code_utils.code_utils import exit_with_message
@@ -91,7 +91,7 @@ def is_end_to_end() -> bool:
9191

9292

9393
@lru_cache(maxsize=1)
94-
def get_cached_gh_event_data() -> dict[str,]:
94+
def get_cached_gh_event_data() -> dict[str, Any]:
9595
event_path = os.getenv("GITHUB_EVENT_PATH")
9696
if not event_path:
9797
return {}

0 commit comments

Comments
 (0)