From b048fa59680048f927720b8cde014fb068bd8e10 Mon Sep 17 00:00:00 2001 From: Joe Moore Date: Fri, 5 Jun 2020 19:44:08 -0400 Subject: [PATCH] Rename an ell variable into something that flake8 doesn't complain about --- hscommon/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hscommon/build.py b/hscommon/build.py index d7a90a9f..182e82cd 100644 --- a/hscommon/build.py +++ b/hscommon/build.py @@ -557,7 +557,7 @@ def fix_qt_resource_file(path): with open(path, "rb") as fp: contents = fp.read() lines = contents.split(b"\n") - lines = [l for l in lines if not l.startswith(b"#")] + lines = [lin for lin in lines if not lin.startswith(b"#")] with open(path, "wb") as fp: fp.write(b"\n".join(lines))