Skip to content

Commit 59debb3

Browse files
fix lint error
1 parent 399ef9a commit 59debb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/code_utils/code_extractor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,7 @@ def _is_target_function_call(self, node: ast.Call) -> bool:
963963

964964
return False
965965

966-
def _get_call_name(self, func_node) -> Optional[str]:
966+
def _get_call_name(self, func_node) -> Optional[str]: # noqa: ANN001
967967
"""Extract the name being called from a function node."""
968968
# Fast path short-circuit for ast.Name nodes
969969
if isinstance(func_node, ast.Name):

0 commit comments

Comments
 (0)