Validates the config and raises an exception if it's invalid.
(config: Dict)
| 66 | @staticmethod |
| 67 | @abstractmethod |
| 68 | async def validate_config(config: Dict) -> None: |
| 69 | """ |
| 70 | Validates the config and raises an exception if it's invalid. |
| 71 | """ |
| 72 | raise NotImplementedError |
| 73 | |
| 74 | @classmethod |
| 75 | def get_display_name(cls) -> str: |