ryn5 commented on code in PR #2432:
URL: https://github.com/apache/tinkerpop/pull/2432#discussion_r1446814087
##########
gremlin-python/src/main/python/gremlin_python/process/graph_traversal.py:
##########
@@ -1451,6 +1467,10 @@ def merge_v(cls, *args):
def min_(cls, *args):
return cls.graph_traversal(None, None, Bytecode()).min_(*args)
+ @classmethod
+ def none(cls, *args):
+ return cls.graph_traversal(None, None, Bytecode()).none(*args)
Review Comment:
Oh right, I forgot that none hasn't been changed to a filtering step yet.
Removing this change.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]