Skip to content

Commit 66e797a

Browse files
committed
fix: Remove unused imports to pass linter
1 parent 9468a8b commit 66e797a

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

backend/toolbox/modules/analyzer/bandit_analyzer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import time
2020
from pathlib import Path
2121
from typing import Dict, Any, List
22-
import uuid
2322

2423
try:
2524
from toolbox.modules.base import BaseModule, ModuleMetadata, ModuleResult, ModuleFinding

backend/toolbox/modules/scanner/dependency_scanner.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import time
2020
from pathlib import Path
2121
from typing import Dict, Any, List
22-
import uuid
2322

2423
try:
2524
from toolbox.modules.base import BaseModule, ModuleMetadata, ModuleResult, ModuleFinding
@@ -200,7 +199,6 @@ def _convert_to_findings(
200199
except ValueError:
201200
rel_path = file_path
202201

203-
finding_id = str(uuid.uuid4())
204202
recommendation = f"Upgrade {package_name} to a fixed version: {', '.join(fix_versions)}" if fix_versions else f"Check for updates to {package_name}"
205203

206204
finding = self.create_finding(

0 commit comments

Comments
 (0)