diff --git a/aiogremlin/process/graph_traversal.py b/aiogremlin/process/graph_traversal.py index c02a76bd8383a9e4950bbdb59393bc2c4616ca29..e8031024f6ad0f80e578c27352518bb801b6aa4b 100644 --- a/aiogremlin/process/graph_traversal.py +++ b/aiogremlin/process/graph_traversal.py @@ -8,7 +8,7 @@ from gremlin_python.process import graph_traversal, traversal class AsyncGraphTraversal(graph_traversal.GraphTraversal): """Implements async iteration protocol and updates relevant methods""" - async def __aiter__(self): + def __aiter__(self): return self async def __anext__(self):