Skip to content

Commit

Permalink
Space
Browse files Browse the repository at this point in the history
  • Loading branch information
harupy committed Jan 4, 2023
1 parent cb67df3 commit db1b81a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/test/fixtures/flake8_simplify/SIM118.py
Expand Up @@ -2,7 +2,7 @@

foo["bar"] in obj.keys() # SIM118

foo['bar'] in obj.keys() # SIM118
foo["bar"] in obj.keys() # SIM118

foo() in obj.keys() # SIM118

Expand All @@ -17,6 +17,6 @@

{k for k in obj.keys()} # SIM118

{k:k for k in obj.keys()} # SIM118
{k: k for k in obj.keys()} # SIM118

(k for k in obj.keys()) # SIM118

0 comments on commit db1b81a

Please sign in to comment.