diff --git a/gremlin-python/src/main/python/gremlin_python/process/graph_traversal.py b/gremlin-python/src/main/python/gremlin_python/process/graph_traversal.py index 07d2c8ca792..c5c30097cfb 100644 --- a/gremlin-python/src/main/python/gremlin_python/process/graph_traversal.py +++ b/gremlin-python/src/main/python/gremlin_python/process/graph_traversal.py @@ -1467,10 +1467,6 @@ 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) - @classmethod def not_(cls, *args): return cls.graph_traversal(None, None, Bytecode()).not_(*args) @@ -2497,8 +2493,6 @@ def where(*args): statics.add_static('in_e', in_e) -statics.add_static('inV', inV) - statics.add_static('in_v', in_v) statics.add_static('in_', in_)