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