Mac to Python · 2 years agoPython errors as valueswww.inngest.comexternal-linkmessage-square18linkfedilinkarrow-up147arrow-down13
arrow-up144arrow-down1external-linkPython errors as valueswww.inngest.comMac to Python · 2 years agomessage-square18linkfedilink
minus-squarechrismit3s@feddit.delinkfedilinkarrow-up6·2 years 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.