You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since flake8-bugbear 22.3.23, B008 warns the code below , but the function calls inside lambda is not called at function definition time. It seems #239 caused this regression.
deffoo(f=lambdax: print(x)):
f(1)
foo()
The text was updated successfully, but these errors were encountered:
Since flake8-bugbear 22.3.23, B008 warns the code below , but the function calls inside lambda is not called at function definition time. It seems #239 caused this regression.
The text was updated successfully, but these errors were encountered: