aboutsummaryrefslogtreecommitdiffstats
path: root/python/collateral/__init__.py
blob: fb8f2eac259b350e2b66ea46162727cfd0bcc349 (plain)
1
2
3
4
5
6
7
8
9
import sys

sys.path.append("..")
try:
    from env import DAILY_DIR, LOG_DIR
except KeyError:
    sys.exit("Please set 'DAILY_DIR' and 'LOG_DIR' in the environment")

from dates import bus_day