We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 453af7f commit 913e45bCopy full SHA for 913e45b
1 file changed
src/spdx_tools/spdx3/writer/console/element_writer.py
@@ -15,7 +15,8 @@
15
def write_element_properties(element: Element, text_output: TextIO):
16
write_value("SPDXID", element.spdx_id, text_output)
17
write_value("name", element.name, text_output)
18
- write_creation_info(element.creation_info, text_output, True)
+ if element.creation_info:
19
+ write_creation_info(element.creation_info, text_output, True)
20
write_value("summary", element.summary, text_output)
21
write_value("description", element.description, text_output)
22
write_value("comment", element.comment, text_output)
0 commit comments