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
There is a typing mistake in AsyncRelationshipDefinition and all it's subclasses. The model: Optional[AsyncStructuredRel] = None parameter of __init__ method should be model: Optional[type[AsyncStructuredRel]] = None
Probably there is the same issue in sync part of lib
The text was updated successfully, but these errors were encountered:
There is a typing mistake in AsyncRelationshipDefinition and all it's subclasses. The
model: Optional[AsyncStructuredRel] = None
parameter of__init__
method should bemodel: Optional[type[AsyncStructuredRel]] = None
Probably there is the same issue in sync part of lib
The text was updated successfully, but these errors were encountered: