Created
May 17, 2018 10:14
-
-
Save VivienGiraud/3138de50a7ab81ab4d980e2d068620e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
from gremlin_python import statics | |
from gremlin_python.process.graph_traversal import __ | |
LOOP_LENGTH = 3 | |
if __name__ == '__main__': | |
statics.load_statics(globals()) | |
for i in range(0, LOOP_LENGTH): | |
print('TEST') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment