Skip to content

Commit

Permalink
Unfix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Apr 24, 2018
1 parent 289c8e1 commit 59a3943
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def parse_args(self, args):
for arg in args:
try:
req = InstallRequirement.from_line(arg)
except Exception:
except:
continue

if implicit_pip and req.name == "pip":
Expand Down
2 changes: 1 addition & 1 deletion templates/pre-10.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def parse_args(self, args):
for arg in args:
try:
req = InstallRequirement.from_line(arg)
except Exception:
except:
continue

if implicit_pip and req.name == "pip":
Expand Down

0 comments on commit 59a3943

Please sign in to comment.