Skip to content

Commit 955b36b

Browse files
committed
remove double quotes inside f-interpolated string
1 parent 5d2ac5d commit 955b36b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/client/file_hierarchy_report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def main():
238238
json.dump(version_report, f)
239239
# TODO items
240240
# 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']]
241+
path_set = [f"{entry.get('archiveContext', '')}!{entry['path']}" for entry in version_report['detailedFileBomViewEntries']]
242242
reduced_path_set = reduce(path_set.copy())
243243
logging.info(f"{len(path_set)-len(reduced_path_set)} path entries were scrubbed from the dataset.")
244244

0 commit comments

Comments
 (0)