eric7/CycloneDXInterface/CycloneDXConfigDialog.py

branch
eric7
changeset 9122
ddf8ed8f7387
parent 9119
5bcdef5207f6
child 9141
7085ece52151
--- a/eric7/CycloneDXInterface/CycloneDXConfigDialog.py	Sat Jun 04 16:56:22 2022 +0200
+++ b/eric7/CycloneDXInterface/CycloneDXConfigDialog.py	Sat Jun 04 16:57:02 2022 +0200
@@ -141,8 +141,9 @@
         
         @return tuple containing the input source, the input file name, the
             file format, the schema version, the path of the SBOM file to be
-            written and a flag indicating to include vulnerability information
-        @rtype tuple of (str, str, str, str, str, bool)
+            written, a flag indicating to include vulnerability information
+            and a flag indicating to include dependency information
+        @rtype tuple of (str, str, str, str, str, bool, bool)
         """
         if self.environmentButton.isChecked():
             inputSource = "environment"
@@ -186,4 +187,5 @@
         return (
             inputSource, inputFile, fileFormat, schemaVersion, sbomFile,
             self.vulnerabilityCheckBox.isChecked(),
+            self.dependenciesCheckBox.isChecked(),
         )

eric ide

mercurial