Skip to content

Commit e9ee712

Browse files
Fix line length warning.
Signed-off-by: Rodney Richardson <[email protected]>
1 parent f042bce commit e9ee712

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cyclonedx/output/xml.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,8 @@ def _add_component_element(self, component: Component) -> ElementTree.Element:
373373

374374
return component_element
375375

376-
def _add_licenses_to_element(self, licenses: "SortedSet[LicenseChoice]", parent_element: ElementTree.Element) -> bool:
376+
def _add_licenses_to_element(self, licenses: "SortedSet[LicenseChoice]",
377+
parent_element: ElementTree.Element) -> bool:
377378
license_output = False
378379
for license_ in licenses:
379380
if license_.license:

0 commit comments

Comments
 (0)