Skip to content

Commit d6b883b

Browse files
committed
AC review
1 parent df3040d commit d6b883b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pymongo/asynchronous/client_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ def __init__(
528528
self._attached_to_cursor = False
529529
# Should we leave the session alive when the cursor is closed?
530530
self._leave_alive = False
531-
# Is this session bound to a scope?
531+
# Is this session bound to a context manager scope?
532532
self._bound = False
533533
self._session_token: Optional[Token[_AsyncBoundClientSession]] = None
534534

pymongo/synchronous/client_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ def __init__(
527527
self._attached_to_cursor = False
528528
# Should we leave the session alive when the cursor is closed?
529529
self._leave_alive = False
530-
# Is this session bound to a scope?
530+
# Is this session bound to a context manager scope?
531531
self._bound = False
532532
self._session_token: Optional[Token[_BoundClientSession]] = None
533533

0 commit comments

Comments
 (0)