diff options
Diffstat (limited to 'lib/sqlalchemy/orm/dynamic.py')
-rw-r--r-- | lib/sqlalchemy/orm/dynamic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/orm/dynamic.py b/lib/sqlalchemy/orm/dynamic.py index fda167a12..7514d86cd 100644 --- a/lib/sqlalchemy/orm/dynamic.py +++ b/lib/sqlalchemy/orm/dynamic.py @@ -243,8 +243,8 @@ class AppenderMixin(AbstractCollectionWriter[_T]): def append(self, item: _T) -> None: """Append an item to this :class:`_orm.AppenderQuery`. - The given item will be removed from the parent instance's collection on - the next flush. + The given item will be persisted to the database in terms of + the parent instance's collection on the next flush. """ self._add_all_impl([item]) |