def foo(): return None f = foo()
def foo(): return None f = foo() if foo() else 1
Used when an assignment is done on a function call but the inferred function returns nothing but None.
None