greenhouse/_init_path.py
Thibaut Mattio c5c2a34a39 Apply PEP recommendation on formatting
Running pylint to make the code complient with PEP recommendations on lintage.
2017-02-28 11:50:15 +08:00

10 lines
132 B
Python

"""Set up paths"""
import sys
def add_path(path):
if path not in sys.path:
sys.path.insert(0, path)
add_path('libs')