diff options
author | emkael <emkael@tlen.pl> | 2017-08-01 14:06:25 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-08-01 14:06:25 +0200 |
commit | ca6c87f457f49cf33f357984d7642b1c83a0eefb (patch) | |
tree | 52cb557a89f7819a844ee394b1c0ccadbb52c607 /jfr_playoff/dto.py | |
parent | de7260322d60eeb5fd0afa57ec2e250ce7f52261 (diff) |
Code formatting
Diffstat (limited to 'jfr_playoff/dto.py')
-rw-r--r-- | jfr_playoff/dto.py | 4 |
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') |