Skip to content

Commit

Permalink
πŸ› dcmmeta2tsv.py: string before joining output
Browse files Browse the repository at this point in the history
  • Loading branch information
WillForan committed Nov 6, 2024
1 parent 0bc1b48 commit 5316ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcmmeta2tsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,4 @@ def read_dicom_tags(self, dcm_path: os.PathLike) -> TagValues:
logging.info("processing %d dicom files", len(sys.argv) - 1)
for dcm_path in sys.argv[1:]:
all_tags = dtr.read_dicom_tags(dcm_path).values()
print("\t".join(all_tags))
print("\t".join([str(x) for x in all_tags]))

0 comments on commit 5316ebb

Please sign in to comment.