Skip to content

Commit

Permalink
Make linter happy #22
Browse files Browse the repository at this point in the history
  • Loading branch information
flosell committed Jun 9, 2018
1 parent 353ee28 commit a6e8ca1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions trailscraper/iam.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@ def matching_actions(self):
Action(prefix=self.prefix, action="Describe" + self._base_action()),
Action(prefix=self.prefix, action="Describe" + self._base_action()+"s"),
]
return [potential_match for potential_match in potential_matches
if potential_match in known_iam_actions(self.prefix) and potential_match != self]
return [potential_match
for potential_match in potential_matches
if potential_match in known_iam_actions(self.prefix) and potential_match != self]



Expand Down

0 comments on commit a6e8ca1

Please sign in to comment.