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
This PR is not trying to simplify the whole nested structure,
just this one layer, as an incremental simplification.
It relies on:
if a:
x
else:
if b:
y
else:
z
being the same as:
if a:
x
elif b:
y
else:
z
0 commit comments