Completed
Push — master ( 583c3e...1a6d78 )
by Ionel Cristian
27s
created

stuff()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
1
import sys
2
import time
3
4
5
def stuff():
6
    print('Doing stuff ...')
7
    time.sleep(1)
8
9
10
if __name__ == '__main__':
11
    if sys.argv[1] == 'manhole':
12
        from hunter import remote
13
14
        remote.install()
15
16
    while True:
17
        stuff()
18