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 0eaa17e commit 064dd0aCopy full SHA for 064dd0a
codeflash/api/cfapi.py
@@ -197,4 +197,4 @@ def get_blocklisted_functions() -> dict[str, set[str]] | dict[str, Any]:
197
logger.error(f"Error getting blocklisted functions: {e}", exc_info=True)
198
return {}
199
200
- return {Path(k).name: {v.replace("()", "") for v in values} for k, values in content.items()}
+ return {Path(k).name: set(v.replace("()", "") for v in values) for k, values in content.items()}
0 commit comments