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
T = Alternative("T", X=dict(x=int), Y=dict(y=float))
class C(Class):
anX = Member(T.X)
def __init__(self):
self.anX = T.X()
Doesn't work, both because the call to T.X() knows the result as T, not T.X (which is just imprecise) and because we don't have appropriate converters set up.
The text was updated successfully, but these errors were encountered:
For instance,
Doesn't work, both because the call to T.X() knows the result as T, not T.X (which is just imprecise) and because we don't have appropriate converters set up.
The text was updated successfully, but these errors were encountered: