Skip to content

Commit 8b1f067

Browse files
committed
Update _auditwall.py
1 parent 97c2473 commit 8b1f067

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/verification/_auditwall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def handle_os_remove(event: str, args: tuple) -> None:
8585

8686

8787
def check_sqlite_connect(event: str, args: tuple) -> None:
88-
if any("codeflash_" in arg for arg in args):
88+
if any(pattern in str(arg) for pattern in args_allow_list for arg in args):
8989
accept(event, args)
9090
else:
9191
reject(event, args)

0 commit comments

Comments
 (0)