We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d71d64d commit b9e8b71Copy full SHA for b9e8b71
codeflash/code_utils/env_utils.py
@@ -5,7 +5,7 @@
5
import tempfile
6
from functools import lru_cache
7
from pathlib import Path
8
-from typing import Optional
+from typing import Any, Optional
9
10
from codeflash.cli_cmds.console import logger
11
from codeflash.code_utils.code_utils import exit_with_message
@@ -91,7 +91,7 @@ def is_end_to_end() -> bool:
91
92
93
@lru_cache(maxsize=1)
94
-def get_cached_gh_event_data() -> dict[str,]:
+def get_cached_gh_event_data() -> dict[str, Any]:
95
event_path = os.getenv("GITHUB_EVENT_PATH")
96
if not event_path:
97
return {}
0 commit comments