--- 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(), )