Skip to content

Commit f0bc67e

Browse files
committed
Remove cursor.get
1 parent e997b1d commit f0bc67e

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

neo4j/v1/session.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -225,15 +225,6 @@ def keys(self):
225225
self._connection.fetch()
226226
return self._keys
227227

228-
def get(self, item, default=None):
229-
current = self._current
230-
if current is None:
231-
raise TypeError("No current record")
232-
try:
233-
return current[item]
234-
except (IndexError, KeyError):
235-
return default
236-
237228
@property
238229
def summary(self):
239230
""" Return the summary from the trailing metadata. Note that this is

0 commit comments

Comments
 (0)