xiazcy commented on code in PR #2432:
URL: https://github.com/apache/tinkerpop/pull/2432#discussion_r1446708815


##########
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:
   If my understanding is correct, `none()` is a terminal step so there is no 
use to add it in the `__` class here (which is why it hasn't been in the class).



-- 
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]

Reply via email to