mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-05 09:12:04 -04:00
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:
commit
c2ec4ee19d
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue