diff options
Diffstat (limited to 'jfr_playoff/data/tournament')
-rw-r--r-- | jfr_playoff/data/tournament/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jfr_playoff/data/tournament/__init__.py b/jfr_playoff/data/tournament/__init__.py index ef16e54..792f634 100644 --- a/jfr_playoff/data/tournament/__init__.py +++ b/jfr_playoff/data/tournament/__init__.py @@ -3,10 +3,10 @@ from jfr_playoff.data.info import ResultInfoClient class TournamentInfoClient(ResultInfoClient): def get_results_link(self, suffix): - pass + raise NotImplementedError def is_finished(self): - pass + raise NotImplementedError def get_tournament_results(self): - pass + raise NotImplementedError |