1#!/usr/bin/env python3
2
3"""Allow clients to import this before importing any core modules to make
4sure the environment is set up right.
5"""
6
7import os
8
9os.environ["CHART_SETTINGS_MODULE"] = "chartepssg.project_settings"
10os.environ["DJANGO_SETTINGS_MODULE"] = "chartepssg.settings"
11
12
13def init():
14 """Dummy function which clients can call to avoid pylint 'unused import' errors."""
15 pass
16
17
18def init_epssg():
19 """Dummy function which clients can call to avoid pylint 'unused import' errors.
20
21 With a nicer name."""
22 pass