We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d2ac5d commit 955b36bCopy full SHA for 955b36b
examples/client/file_hierarchy_report.py
@@ -238,7 +238,7 @@ def main():
238
json.dump(version_report, f)
239
# TODO items
240
# Process file section of report data to identify primary paths
241
- path_set = [f"{entry.get('archiveContext', "")}!{entry['path']}" for entry in version_report['detailedFileBomViewEntries']]
+ path_set = [f"{entry.get('archiveContext', '')}!{entry['path']}" for entry in version_report['detailedFileBomViewEntries']]
242
reduced_path_set = reduce(path_set.copy())
243
logging.info(f"{len(path_set)-len(reduced_path_set)} path entries were scrubbed from the dataset.")
244
0 commit comments