mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-05 06:50:33 -05:00
Merge branch 'marka-silence-flake8-warning-v9_16' into 'v9_16'
Silence: E741 ambiguous variable name 'l' See merge request isc-projects/bind9!3524
This commit is contained in:
commit
d3c19d290b
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):
|
||||
pprint.pprint(l)
|
||||
for y in yaml.load_all(f.stdout):
|
||||
pprint.pprint(y)
|
||||
|
|
|
|||
Loading…
Reference in a new issue