Skip to content

Commit e2be966

Browse files
committed
Update _auditwall.py
1 parent 43587c5 commit e2be966

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

codeflash/verification/_auditwall.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ def accept(event: str, args: tuple) -> None:
1919
pass
2020

2121

22-
args_allow_list = {".coverage", "matplotlib.rc"}
22+
args_allow_list = {".coverage", "matplotlib.rc", "codeflash_"}
2323

2424

2525
def reject(event: str, args: tuple) -> None:
26+
print(args)
2627
if any(arg in args_allow_list for arg in args):
2728
return
2829
msg = f'codeflash has detected: {event}{args}".'

0 commit comments

Comments
 (0)