diff options
author | emkael <emkael@tlen.pl> | 2020-01-02 00:55:55 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2020-01-02 00:55:55 +0100 |
commit | 8ec9f68131ff3ff6f3dab3af5f27fa25e6d66f45 (patch) | |
tree | 3e15f1bb69f26b4f4dfa4b9dec72176abe6e671c /jfr_playoff/data/tournament | |
parent | 18c8b492ae89319163c4d11d489bf404b6c58e52 (diff) |
Adjustments to the result info client model to make it usable with PyInstallerv2.1.0
Diffstat (limited to 'jfr_playoff/data/tournament')
-rw-r--r-- | jfr_playoff/data/tournament/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/jfr_playoff/data/tournament/__init__.py b/jfr_playoff/data/tournament/__init__.py index 792f634..996a399 100644 --- a/jfr_playoff/data/tournament/__init__.py +++ b/jfr_playoff/data/tournament/__init__.py @@ -10,3 +10,10 @@ class TournamentInfoClient(ResultInfoClient): def get_tournament_results(self): raise NotImplementedError + + +CLIENTS = [ + 'jfr_playoff.data.tournament.jfrdb', + 'jfr_playoff.data.tournament.jfrhtml', + 'jfr_playoff.data.tournament.tcjson' +] |