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
[case testWithMultipleTargets]
a: A
class A:
def __enter__(self) -> int: pass
def __exit__(self, x, y, z): pass
with A() as x, A() as y: # type: int, int
pass