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 cc34aab commit 0eaa17eCopy full SHA for 0eaa17e
codeflash/discovery/functions_to_optimize.py
@@ -1,6 +1,7 @@
1
from __future__ import annotations
2
3
import ast
4
+import json
5
import os
6
import random
7
import warnings
@@ -458,6 +459,8 @@ def filter_functions(
458
459
continue
460
if blocklist_funcs:
461
console.print(["blocklist", blocklist_funcs])
462
+ console.print(f"DEBUG: Blocklist structure: {json.dumps(blocklist_funcs, default=str)}")
463
+
464
for function in functions.copy():
465
path = Path(function.file_path).name
466
if path in blocklist_funcs and function.function_name in blocklist_funcs[path]:
0 commit comments