Skip to content

Commit fbefd15

Browse files
authored
Remove deleted method sync from docs (#584)
1 parent 031b9a2 commit fbefd15

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
@@ -81,10 +81,6 @@ def _consume_results(self):
8181
def run(self, query, parameters=None, **kwparameters):
8282
""" Run a Cypher query within the context of this transaction.
8383
84-
The query is sent to the server lazily, when its result is
85-
consumed. To force the query to be sent to the server, use
86-
the :meth:`.Transaction.sync` method.
87-
8884
Cypher is typically expressed as a query template plus a
8985
set of named parameters. In Python, parameters may be expressed
9086
through a dictionary of parameters, through individual parameter

0 commit comments

Comments
 (0)