diff options
Diffstat (limited to 'ausbutler/interface.py')
-rw-r--r-- | ausbutler/interface.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ausbutler/interface.py b/ausbutler/interface.py index bc3549c..9998424 100644 --- a/ausbutler/interface.py +++ b/ausbutler/interface.py @@ -1,13 +1,14 @@ import re +from copy import copy from datetime import datetime from os import path -from copy import copy + from jinja2 import Environment, FileSystemLoader -from .butler import cutoff, get_opponents, get_room, normalize, get_line +from .butler import cutoff, get_line, get_opponents, get_room, normalize from .db import get_session from .model import AusButler, Butler -from .tour_config import Translations, Constants +from .tour_config import Constants, Translations class Interface(object): |