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
I had some code calling parse_args(args, ns) where the type of ns was Optional[Namespace. It then deduced that the return type was also Optional[Namespace]. I think this is a mistake -- I don't think parse_args() ever returns None. Perhaps _N should be constrained by bound='Namespace'?