Fix: remove abstractmethod decroation for on_elevator_move

This commit is contained in:
Xuwznln
2025-10-09 16:49:07 +08:00
parent ee3c4bab7e
commit 889d554f19
3 changed files with 13 additions and 1 deletions

View File

@@ -171,7 +171,7 @@ class ElevatorController(ABC):
"""
pass
@abstractmethod
# @abstractmethod 为了兼容性暂不强制要求elevator_move必须实现
def on_elevator_move(
self, elevator: ProxyElevator, from_position: float, to_position: float, direction: str, status: str
) -> None: