fix env serialized error

This commit is contained in:
shenchucheng 2024-08-22 20:51:29 +08:00
parent b2e8be2d78
commit fef8bfd9bc

View file

@ -8,7 +8,10 @@ class BaseRole:
"""Abstract base class for all roles."""
name: str
is_idle: bool
@property
def is_idle(self) -> bool:
raise NotImplementedError
@abstractmethod
def think(self):