From 23e2922fce055361817503a14dc8c9c63c2c57f3 Mon Sep 17 00:00:00 2001 From: Georges Toth Date: Sat, 27 Apr 2024 23:21:14 +0200 Subject: [PATCH] lint fix --- openhab/command_types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openhab/command_types.py b/openhab/command_types.py index 6ac7bb5..0e2c4be 100644 --- a/openhab/command_types.py +++ b/openhab/command_types.py @@ -79,6 +79,7 @@ def validate(cls, value: typing.Any) -> None: Args: value (Object): The value to validate. The data_type of the value depends on the item data_type and is checked accordingly. + Raises: NotImplementedError: Raises NotImplementedError as the base class should never be used directly.