summaryrefslogtreecommitdiff
path: root/ausbutler/interface.py
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-01-06 03:17:30 +0100
committeremkael <emkael@tlen.pl>2017-01-06 03:17:30 +0100
commitcbb74e0b5971fe4453477094558cdb125bee4524 (patch)
tree6f0bc73a98f9740822a21a45ceafefabfa2d6e8c /ausbutler/interface.py
parentb0b0e9f8e5e14b1fc67fbd5db37dc37abe76e0f1 (diff)
Code formatting: import sort
Diffstat (limited to 'ausbutler/interface.py')
-rw-r--r--ausbutler/interface.py7
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):