mirror of
https://github.com/mandiant/capa.git
synced 2025-12-12 15:49:46 -08:00
fix flake8 linting: replace unused 'variable' with '_'
This commit is contained in:
@@ -43,7 +43,7 @@ def extract_environ_strings(behavior: Dict, ph: ProcessHandle) -> Iterator[Tuple
|
||||
if not environ:
|
||||
return
|
||||
|
||||
for variable, value in environ.items():
|
||||
for _, value in environ.items():
|
||||
if value:
|
||||
yield String(value), ph.address
|
||||
|
||||
|
||||
Reference in New Issue
Block a user