Mac to [email protected] • 1 year agoPython errors as valueswww.inngest.comexternal-linkmessage-square17fedilinkarrow-up143arrow-down12cross-posted to: [email protected]
arrow-up141arrow-down1external-linkPython errors as valueswww.inngest.comMac to [email protected] • 1 year agomessage-square17fedilinkcross-posted to: [email protected]
minus-square@[email protected]linkfedilink6•1 year agoIf you wrote the type signature of get_user as tuple[User, None] | tuple[None, Exception], the assertion would not be necessary and the type checker wouldn’t complain.
If you wrote the type signature of
get_user
astuple[User, None] | tuple[None, Exception]
, the assertion would not be necessary and the type checker wouldn’t complain.