Skip to content

Commit 0b5c73a

Browse files
committed
Python: Allow any .bqrs file
1 parent b24e565 commit 0b5c73a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ql/src/meta/ClassHierarchy/process-mrva-results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def parse_from_file(path: Path) -> set:
8383

8484
def gather_from_bqrs_results():
8585
with CodeQL() as codeql:
86-
for f in glob.glob(f"{sys.argv[1]}/**/results.bqrs", recursive=True):
86+
for f in glob.glob(f"{sys.argv[1]}/**.bqrs", recursive=True):
8787
print(f"Processing {f}")
8888

8989
json_data = codeql.command(["bqrs", "decode", "--format=json", f])

0 commit comments

Comments
 (0)