Silence: E741 ambiguous variable name 'l'

(cherry picked from commit 189d21fb96)
This commit is contained in:
Mark Andrews
2020-05-12 17:41:41 +10:00
committed by Ondřej Surý
parent 2232e6379f
commit 2a45b67ee1

View File

@@ -25,5 +25,5 @@ DATAFILE = sys.argv[2]
ARGS = [DNSTAP_READ, '-y', DATAFILE]
with subprocess.Popen(ARGS, stdout=subprocess.PIPE) as f:
for l in yaml.load_all(f.stdout):
pprint.pprint(l)
for y in yaml.load_all(f.stdout):
pprint.pprint(y)