summaryrefslogtreecommitdiff
path: root/f1elo/elo.py
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2014-10-07 11:00:51 +0200
committeremkael <emkael@tlen.pl>2014-10-07 11:00:51 +0200
commit6298e63ddb46d01d9e272f8830186d1d7482751a (patch)
tree46d873294c03483859fb357be2d1663fa230ed87 /f1elo/elo.py
parent7127fd85771045a62030dc9cef840a347b639308 (diff)
* isort-ed imports
Diffstat (limited to 'f1elo/elo.py')
-rw-r--r--f1elo/elo.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/f1elo/elo.py b/f1elo/elo.py
index 3ddc6e4..cb35e6c 100644
--- a/f1elo/elo.py
+++ b/f1elo/elo.py
@@ -1,10 +1,10 @@
-import __main__
+import json
+from itertools import combinations
from os import path
+import __main__
from f1elo.model import *
-import json
-from itertools import combinations
class Elo:
def __init__(self, session):