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 252381f commit b8bc645Copy full SHA for b8bc645
codeflash/discovery/functions_to_optimize.py
@@ -460,8 +460,8 @@ def filter_functions(
460
function
461
for function in functions
462
if not (
463
- Path(function.file_path).name in blocklist_funcs
464
- and function.qualified_name in blocklist_funcs[Path(function.file_path).name]
+ function.file_path.name in blocklist_funcs
+ and function.qualified_name in blocklist_funcs[function.file_path.name]
465
)
466
]
467
filtered_modified_functions[file_path] = functions
0 commit comments