@@ -31,7 +31,7 @@ class RelationshipProperty(StrategizedProperty, Generic[_T_co]):
31
31
lazy : Any = ...
32
32
single_parent : bool = ...
33
33
collection_class : Any = ...
34
- passive_deletes : bool = ...
34
+ passive_deletes : Union [ bool , str ] = ...
35
35
cascade_backrefs : bool = ...
36
36
passive_updates : bool = ...
37
37
remote_side : Any = ...
@@ -61,7 +61,7 @@ class RelationshipProperty(StrategizedProperty, Generic[_T_co]):
61
61
back_populates : Optional [Any ] = ..., post_update : bool = ..., cascade : Union [str , bool ] = ...,
62
62
extension : Optional [Any ] = ..., viewonly : bool = ...,
63
63
lazy : Optional [Union [str , bool ]] = ..., collection_class : Optional [Any ] = ...,
64
- passive_deletes : bool = ..., passive_updates : bool = ...,
64
+ passive_deletes : Union [ bool , str ] = ..., passive_updates : bool = ...,
65
65
remote_side : Optional [Any ] = ..., enable_typechecks : bool = ...,
66
66
join_depth : Optional [Any ] = ..., comparator_factory : Optional [Any ] = ...,
67
67
single_parent : bool = ..., innerjoin : bool = ..., distinct_target_key : Optional [Any ] = ...,
0 commit comments