summaryrefslogtreecommitdiff
path: root/jfr_playoff/data/tournament
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2019-12-30 16:04:05 +0100
committeremkael <emkael@tlen.pl>2019-12-30 16:04:05 +0100
commit1f5037ee76a65091ac6bbddafb1568772b5e8a64 (patch)
treeaad5552d36f771927b13f48679672b48b9b9a419 /jfr_playoff/data/tournament
parent5e66c1684a8a2b0597fc2633078c23e212cce228 (diff)
Adding NotImplementedError to the list of result info client exceptions that iterate over clients
Diffstat (limited to 'jfr_playoff/data/tournament')
-rw-r--r--jfr_playoff/data/tournament/__init__.py6
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