Merge branch 'marka-silence-flake8-warning' into 'master'

Silence: E741 ambiguous variable name 'l'

See merge request isc-projects/bind9!3521
This commit is contained in:
Ondřej Surý 2020-05-12 08:33:25 +00:00
commit c2ec4ee19d

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, Loader=yaml.SafeLoader):
pprint.pprint(l)
for y in yaml.load_all(f.stdout, Loader=yaml.SafeLoader):
pprint.pprint(y)