mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-17 13:41:41 +00:00
0892db6fa7
git-subtree-dir: SpiffWorkflow git-subtree-split: 63db3e45947ec66b8d0efc2c74064004f8ff482c
12 lines
133 B
Python
12 lines
133 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import time
|
|
|
|
|
|
def main():
|
|
time.sleep(0.5)
|
|
print("127.0.0.1")
|
|
|
|
if __name__ == "__main__":
|
|
main()
|