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 8debda7 commit d52ba06Copy full SHA for d52ba06
codeflash/context/code_context_extractor.py
@@ -407,7 +407,7 @@ def get_function_sources_from_jedi(
407
for name in names:
408
try:
409
definitions: list[Name] = name.goto(follow_imports=True, follow_builtin_imports=False)
410
- except Exception: # noqa: BLE001
+ except Exception:
411
logger.debug(f"Error while getting definitions for {qualified_function_name}")
412
definitions = []
413
if definitions:
@@ -780,4 +780,4 @@ def prune_cst_for_testgen_code(
780
if updates:
781
return (node.with_changes(**updates), found_any_target)
782
783
- return None, False
+ return None, False
0 commit comments