fix flake8 linting: replace unused 'variable' with '_'

This commit is contained in:
Yacine Elhamer
2023-07-11 12:36:23 +01:00
parent f879f53a6b
commit b615c103ef

View File

@@ -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