summaryrefslogtreecommitdiff
path: root/jfr_playoff/dto.py
diff options
context:
space:
mode:
Diffstat (limited to 'jfr_playoff/dto.py')
-rw-r--r--jfr_playoff/dto.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/jfr_playoff/dto.py b/jfr_playoff/dto.py
index bf3e16a..f5e08ef 100644
--- a/jfr_playoff/dto.py
+++ b/jfr_playoff/dto.py
@@ -2,6 +2,7 @@ class Team(object):
name = ''
score = 0.0
+
class Match(object):
id = None
teams = None
@@ -12,10 +13,11 @@ class Match(object):
winner_matches = None
loser_matches = None
+
class Phase(object):
title = None
link = None
matches = []
running = False
-__all__ = ['Team', 'Match', 'Phase']
+__all__ = ('Team', 'Match', 'Phase')