Skip to content

Commit

Permalink
pep8: Add compliance with rule E261 to minify-js.
Browse files Browse the repository at this point in the history
  • Loading branch information
adnrs96 committed May 17, 2017
1 parent cd7fda9 commit 171a0dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/minify-js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def get_changed_source_files(other_checkout):
% (other_checkout,))
return None

changed = set() # type: Set[str]
changed = set() # type: Set[str]
for filename in git_diff.split('\n'):
if filename in ["package.json", "zproject/settings.py", "tools/minify-js",
"tools/tools/webpack.production.config.js"]:
Expand All @@ -76,7 +76,7 @@ def get_changed_source_files(other_checkout):
return changed


changed_files = set() # type: Set[str]
changed_files = set() # type: Set[str]
if prev_deploy:
changed_files = get_changed_source_files(prev_deploy)
if changed_files is None:
Expand Down

0 comments on commit 171a0dd

Please sign in to comment.