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 fd5356f commit 4fb19bfCopy full SHA for 4fb19bf
commands2/functionalcommand.py
@@ -31,6 +31,11 @@ def __init__(
31
:param requirements: the subsystems required by this command"""
32
super().__init__()
33
34
+ assert callable(onInit)
35
+ assert callable(onExecute)
36
+ assert callable(onEnd)
37
+ assert callable(isFinished)
38
+
39
self._onInit = onInit
40
self._onExecute = onExecute
41
self._onEnd = onEnd
0 commit comments