Skip to content

Commit

Permalink
Merge pull request #672 from jpvlsmv/variable_fix_trivial
Browse files Browse the repository at this point in the history
Rename an ell variable into something that flake8 doesn't complain about
  • Loading branch information
arsenetar authored Jun 24, 2020
2 parents 4c9309e + d219332 commit c35db7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hscommon/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down

0 comments on commit c35db7f

Please sign in to comment.