Methods are now abstract

This commit is contained in:
Lukas Klass 2020-05-20 09:12:29 +02:00
parent 4c5465321b
commit 2f96407908
1 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,7 @@ class ASensor:
"""
Abstract super class for sensor models
"""
@abstractmethod
def __init__(self, parent: IRadiant):
"""
Initialize a new sensor
@ -79,6 +80,7 @@ class ASensor:
pass
@staticmethod
@abstractmethod
def check_config(sensor: Entry, conf: Entry) -> Union[None, str]:
"""
Check the configuration for this class