Skip to content

Commit

Permalink
Merge pull request #1215 from allisonkarlitskaya/e303
Browse files Browse the repository at this point in the history
testing: add a pair of E303 testcases
  • Loading branch information
sigmavirus24 committed Nov 21, 2023
2 parents cefd59c + 75ad6a9 commit 13a238b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions testing/data/E30.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,20 @@ def a():
#:


#: E303:6:5
class xyz:
def a(self):
pass


def b(self):
pass
#: E303:5:5
if True:
a = 1


a = 2
#: E304:3:1
@decorator

Expand Down

0 comments on commit 13a238b

Please sign in to comment.