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 c4abffe commit 6db3b37Copy full SHA for 6db3b37
python/ql/src/meta/ClassHierarchy/process-mrva-results.py
@@ -100,7 +100,7 @@ def gather_from_bqrs_results():
100
package_data[pkg].add(tuple(t))
101
102
def gather_from_existing():
103
- for f in glob.glob(f"{mad_path}/auto-*.model.yml", recursive=True):
+ for f in glob.glob(f"{mad_path}/subclass-capture/auto-*.model.yml", recursive=True):
104
print(f"Processing {f}")
105
106
all_data = parse_from_file(Path(f))
@@ -114,7 +114,7 @@ def gather_from_existing():
114
print(f"Skipping {repr(pkg)}")
115
continue
116
117
- pkg_path = mad_path / f"auto-{pkg}.model.yml"
+ pkg_path = mad_path / "subclass-capture" / f"auto-{pkg}.model.yml"
118
119
print(f"Writing {pkg_path}")
120
0 commit comments