From 2a45b67ee18bbb2d2c10a81189fd901f88e64ea8 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' (cherry picked from commit 189d21fb9602a56b1606d514bc6b313d03ef419e) --- 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 6788b054b8..2250febe3d 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): - pprint.pprint(l) + for y in yaml.load_all(f.stdout): + pprint.pprint(y)