Skip to content

Commit

Permalink
tests for ignoring _
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrugman committed Dec 11, 2023
1 parent d945663 commit f87f9f3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/data/err_184.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,11 @@ def assign_alternating(df, df2):


# these will not
def ignored(x):
_ = x.op1()
_ = _.op2()
return _

def _(x):
y = x.m()
return y.operation(*[v for v in y])
Expand Down

0 comments on commit f87f9f3

Please sign in to comment.