We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2436772 commit da8167cCopy full SHA for da8167c
src/kevinbotlib_deploytool_example/main.py
@@ -1,13 +1,10 @@
1
-from typing import override
2
-
3
from kevinbotlib.robot import BaseRobot
4
5
6
class ExampleRobot(BaseRobot):
7
def __init__(self):
8
super().__init__(["DeployedRobotOpMode"])
9
10
- @override
11
def opmode_init(self, opmode: str, enabled: bool) -> None:
12
super().opmode_init(opmode, enabled)
13
print("Example robot started up...") # noqa: T201
0 commit comments