summaryrefslogtreecommitdiff
path: root/butler.py
diff options
context:
space:
mode:
Diffstat (limited to 'butler.py')
-rw-r--r--butler.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/butler.py b/butler.py
index bb95925..6f3a2d4 100644
--- a/butler.py
+++ b/butler.py
@@ -4,10 +4,9 @@ from os import path
import __main__
from ausbutler.interface import Interface
-config = json.load(
- open(path.join(path.dirname(__main__.__file__), 'config', 'butler.json')))
-i = Interface(config)
+i = Interface(json.load(
+ open(path.join(path.dirname(__main__.__file__), 'config', 'butler.json'))))
i.init_db()
i.populate_db()
i.opp_scores()