Skip to content

Commit 2a11dba

Browse files
committed
Raise NotImplementedError in get_output
1 parent 724a9c0 commit 2a11dba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rlbot/managers/bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,4 @@ def get_output(self, game_tick_packet: flat.GameTickPacket) -> flat.ControllerSt
199199
"""
200200
Where all the logic of your bot gets its input and returns its output.
201201
"""
202-
return flat.ControllerState()
202+
raise NotImplementedError

rlbot/managers/hivemind.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,4 @@ def get_outputs(
195195
"""
196196
Where all the logic of your bot gets its input and returns its output.
197197
"""
198-
return {}
198+
raise NotImplementedError

0 commit comments

Comments
 (0)