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 aa08801 commit 96feab6Copy full SHA for 96feab6
examples/client/file_hierarchy_report.py
@@ -194,6 +194,8 @@ def main():
194
report_data = {name: zip.read(name) for name in zip.namelist()}
195
filename = [i for i in report_data.keys() if i.endswith(".json")][0]
196
version_report = json.loads(report_data[filename])
197
+ with open("out.json", "w") as f:
198
+ json.dump(version_report, f)
199
# TODO items
200
# Process file section of report data to identify primary paths
201
# Combine component data with selected file data
0 commit comments