From e921b9827e3ea77f925a2289392708d622df505c Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Wed, 13 May 2020 23:20:28 -0500 Subject: [PATCH] Fix flake8 error --- hscommon/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hscommon/build.py b/hscommon/build.py index d7a90a9f..96f52598 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 = [line for line in lines if not line.startswith(b"#")] with open(path, "wb") as fp: fp.write(b"\n".join(lines))