Skip to content

Commit 039e273

Browse files
committed
Fix CI & update gitignore
1 parent e29d792 commit 039e273

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,7 @@ node_modules/
3737
ci-test-api-security-api/
3838
ci-test*
3939
data.db
40+
41+
# Paper stuff
42+
paper/
43+
experiments/

graphqler/fuzzer/fuzzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __init__(self, save_path: str, url: str, objects_bucket: typing.Optional[Obj
4848
# Fuzzer instances are created sequentially (e.g. in run_all_experiments.py),
4949
# the stale singleton would otherwise keep the first API's queries/mutations,
5050
# causing KeyErrors for every operation in the subsequent API.
51-
FEngine.reset()
51+
FEngine.reset() # ty: ignore[unresolved-attribute]
5252
self.fengine = FEngine(self.api)
5353
self.dengine = DEngine(self.api)
5454
self.idor_detector = IDORChainDetector()

0 commit comments

Comments
 (0)