4 lines
72 B
Python
4 lines
72 B
Python
# add current working directory to path
|
|
import sys
|
|
sys.path.append('.')
|
# add current working directory to path
|
|
import sys
|
|
sys.path.append('.')
|