6801 @pyqtSlot() |
6801 @pyqtSlot() |
6802 def __createSBOMFile(self): |
6802 def __createSBOMFile(self): |
6803 """ |
6803 """ |
6804 Private slot to create a SBOM file of the project dependencies. |
6804 Private slot to create a SBOM file of the project dependencies. |
6805 """ |
6805 """ |
6806 import CycloneDXInterface # __IGNORE_WARNING_I102__ |
6806 from eric7 import CycloneDXInterface |
6807 |
6807 |
6808 CycloneDXInterface.createCycloneDXFile("<project>") |
6808 CycloneDXInterface.createCycloneDXFile("<project>") |
6809 |
6809 |
6810 ######################################################################### |
6810 ######################################################################### |
6811 ## Below are methods implementing the 'Code Formatting' support |
6811 ## Below are methods implementing the 'Code Formatting' support |