From 189d21fb9602a56b1606d514bc6b313d03ef419e Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Tue, 12 May 2020 17:41:41 +1000 Subject: [PATCH] Silence: E741 ambiguous variable name 'l' --- bin/tests/system/dnstap/ydump.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/tests/system/dnstap/ydump.py b/bin/tests/system/dnstap/ydump.py index e199effca4..c1c2602459 100644 --- a/bin/tests/system/dnstap/ydump.py +++ b/bin/tests/system/dnstap/ydump.py @@ -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) -- GitLab