fix: Address high-severity bandit issues

This commit is contained in:
DSS
2025-12-11 07:13:06 -03:00
parent bcb4475744
commit 5b2a328dd1
167 changed files with 7051 additions and 7168 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env python3
"""
Example 3: Project Analysis & Quick Wins
Example 3: Project Analysis & Quick Wins.
Shows how to analyze a React project and identify improvement opportunities.
"""
@@ -28,8 +28,8 @@ async def main():
scanner = ProjectScanner(project_path)
analysis = await scanner.scan()
print(f"✅ Project scanned successfully")
print(f"\nProject Details:")
print("✅ Project scanned successfully")
print("\nProject Details:")
print(f" Framework: {analysis.framework}")
print(f" Styling: {analysis.styling_approach}")
print(f" Package Manager: {analysis.package_manager}")
@@ -63,7 +63,8 @@ async def main():
print("-" * 60)
high_roi = [
w for w in wins.opportunities
w
for w in wins.opportunities
if w.impact.value == "high" and w.effort.value in ["low", "medium"]
]