Skip to content

Commit 064dd0a

Browse files
committed
Update cfapi.py
1 parent 0eaa17e commit 064dd0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/api/cfapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,4 +197,4 @@ def get_blocklisted_functions() -> dict[str, set[str]] | dict[str, Any]:
197197
logger.error(f"Error getting blocklisted functions: {e}", exc_info=True)
198198
return {}
199199

200-
return {Path(k).name: {v.replace("()", "") for v in values} for k, values in content.items()}
200+
return {Path(k).name: set(v.replace("()", "") for v in values) for k, values in content.items()}

0 commit comments

Comments
 (0)