Skip to content

Commit 77cb2fa

Browse files
committed
Update cfapi.py
1 parent 7c4f1ef commit 77cb2fa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

codeflash/api/cfapi.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,8 @@ def get_blocklisted_functions() -> dict[str, set[str]] | dict[str, Any]:
199199
sentry_sdk.capture_exception(e)
200200
return {}
201201

202-
return {Path(k).name: {v.replace("()", "") for v in values} for k, values in content.items()}
202+
# return {Path(k).name: {v.replace("()", "") for v in values} for k, values in content.items()}
203+
logger.info(f"pre Blocklisted functions: {content}")
204+
pre = {Path(k).name: {v.replace("()", "") for v in values} for k, values in content.items()}
205+
logger.info(f"post Blocklisted functions: {pre}")
206+
return pre

0 commit comments

Comments
 (0)