Skip to content

Commit 8fb6f33

Browse files
authored
Remove deleted method sync from docs (#583)
1 parent 0746419 commit 8fb6f33

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

docs/source/transactions.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ To construct a :class:`.Session` use the :meth:`.Driver.session` method.
3333

3434
.. automethod:: run
3535

36-
.. automethod:: sync
37-
3836
.. automethod:: detach
3937

4038
.. automethod:: next_bookmarks
@@ -79,8 +77,6 @@ It also gives applications the ability to directly control `commit` and `rollbac
7977

8078
.. automethod:: run
8179

82-
.. automethod:: sync
83-
8480
.. automethod:: closed
8581

8682
.. automethod:: commit

neo4j/work/transaction.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,6 @@ def _consume_results(self):
7777
def run(self, query, parameters=None, **kwparameters):
7878
""" Run a Cypher query within the context of this transaction.
7979
80-
The query is sent to the server lazily, when its result is
81-
consumed. To force the query to be sent to the server, use
82-
the :meth:`.Transaction.sync` method.
83-
8480
Cypher is typically expressed as a query template plus a
8581
set of named parameters. In Python, parameters may be expressed
8682
through a dictionary of parameters, through individual parameter

0 commit comments

Comments
 (0)