summaryrefslogtreecommitdiffstats
path: root/src/scheduler_brutal.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/scheduler_brutal.py')
-rw-r--r--src/scheduler_brutal.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scheduler_brutal.py b/src/scheduler_brutal.py
index f41d203..e4e7ee2 100644
--- a/src/scheduler_brutal.py
+++ b/src/scheduler_brutal.py
@@ -1,12 +1,13 @@
"""
"""
+from scheduler import Scheduler
from card import Card
from random import shuffle
HISTORY_DEPTH = 8
-class SchedulerBrutal:
+class SchedulerBrutal(Scheduler):
def __init__(self, cards: dict[int, Card], state: dict):
self._cards = cards
self._state = {}