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 43587c5 commit e2be966Copy full SHA for e2be966
codeflash/verification/_auditwall.py
@@ -19,10 +19,11 @@ def accept(event: str, args: tuple) -> None:
19
pass
20
21
22
-args_allow_list = {".coverage", "matplotlib.rc"}
+args_allow_list = {".coverage", "matplotlib.rc", "codeflash_"}
23
24
25
def reject(event: str, args: tuple) -> None:
26
+ print(args)
27
if any(arg in args_allow_list for arg in args):
28
return
29
msg = f'codeflash has detected: {event}{args}".'
0 commit comments