fix(lerobot/common/envs): remove lint warnings/errors

This commit is contained in:
Steven Palma
2025-03-07 15:08:06 +01:00
parent 1187604ba0
commit 9b380eaf67

View File

@@ -32,7 +32,8 @@ class EnvConfig(draccus.ChoiceRegistry, abc.ABC):
def type(self) -> str:
return self.get_choice_name(self.__class__)
@abc.abstractproperty
@property
@abc.abstractmethod
def gym_kwargs(self) -> dict:
raise NotImplementedError()