From ff12c96467af2ae519e1894d3f5df579b5308537 Mon Sep 17 00:00:00 2001 From: Sanskar Sharma Date: Wed, 5 Jun 2024 02:41:47 +0530 Subject: [PATCH] docs: minor docstring fix (#4157) --- cve_bin_tool/input_engine.py | 3 --- cve_bin_tool/sbom_manager/__init__.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/cve_bin_tool/input_engine.py b/cve_bin_tool/input_engine.py index f31bacb59e..f6ab2fcac6 100644 --- a/cve_bin_tool/input_engine.py +++ b/cve_bin_tool/input_engine.py @@ -59,9 +59,6 @@ class InputEngine: - validate_product(self, product: str) -> bool: Validates if a product name conforms to the CPE 2.3 standard. - - input_vex(self) -> None: - Parses input data from a CycloneDX VEX file. - - parse_data(self, fields: Set[str], data: Iterable) -> None: Parses common data structure for CSV and JSON input formats. diff --git a/cve_bin_tool/sbom_manager/__init__.py b/cve_bin_tool/sbom_manager/__init__.py index f2249c9460..9d92107873 100644 --- a/cve_bin_tool/sbom_manager/__init__.py +++ b/cve_bin_tool/sbom_manager/__init__.py @@ -29,7 +29,7 @@ class SBOMManager: """ - Class: InputEngine + Class: SBOMManager This class is responsible for parsing various SBOM file formats (SPDX, CycloneDX, SWID) in the CVE Bin Tool.