We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49a184c commit 4d80324Copy full SHA for 4d80324
python-checks/src/test/resources/checks/nonCallableCalled.py
@@ -407,3 +407,7 @@ def function_type_is_callable():
407
def object_typevar():
408
scheduled = []
409
scheduled.pop()() # OK
410
+
411
+def uncallable_inside_lambda_are_non_compliant():
412
+ lambda_call = (lambda : print("something"))() # OK
413
+ uncallable_inside_lambda = lambda:(print("something"))() # Noncompliant
0 commit comments