fix: resolve linter errors in Android modules

- Remove unused imports from mobsf_scanner.py (asyncio, hashlib, json, Optional)
- Remove unused variables from opengrep_android.py (start_col, end_col)
- Remove duplicate Path import from workflow.py
This commit is contained in:
tduhamel42
2025-10-24 17:05:04 +02:00
parent 73dc26493d
commit 1fd525f904
3 changed files with 1 additions and 7 deletions
@@ -273,8 +273,6 @@ class OpenGrepAndroid(BaseModule):
path_info = result.get("path", "")
start_line = result.get("start", {}).get("line", 0)
end_line = result.get("end", {}).get("line", 0)
start_col = result.get("start", {}).get("col", 0)
end_col = result.get("end", {}).get("col", 0)
# Code snippet
lines = extra.get("lines", "")