From: Mark Andrews Date: Tue, 12 May 2020 07:41:41 +0000 (+1000) Subject: Silence: E741 ambiguous variable name 'l' X-Git-Tag: v9.17.2~82^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=189d21fb9602a56b1606d514bc6b313d03ef419e;p=thirdparty%2Fbind9.git Silence: E741 ambiguous variable name 'l' --- diff --git a/bin/tests/system/dnstap/ydump.py b/bin/tests/system/dnstap/ydump.py index e199effca44..c1c26024592 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)