From 28f08605a3b2e1497341db4b5bdad27691134d6d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 1 Aug 2020 13:42:40 +0200 Subject: Fix ambiguous variable name flake8 warning --- scripts/ingenams | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/ingenams b/scripts/ingenams index a88f96d0..72438eed 100755 --- a/scripts/ingenams +++ b/scripts/ingenams @@ -245,9 +245,9 @@ world = World(server_uri) in_file = open(in_path, 'r') in_comment = False -for l in in_file: +for line in in_file: try: - expr = l.split() + expr = line.split() if not expr: continue elif expr[0] == '#PARA#': -- cgit v1.2.1