ramses-rf 0.51.6__py3-none-any.whl → 0.51.8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ramses_rf/__init__.py CHANGED
@@ -16,7 +16,9 @@ from typing import TYPE_CHECKING
16
16
 
17
17
  from ramses_tx import Address, Command, Message, Packet # noqa: F401
18
18
 
19
+ from . import exceptions # noqa: F401
19
20
  from .device import Device # noqa: F401
21
+ from .exceptions import CommandInvalid # noqa: F401
20
22
  from .gateway import Gateway # noqa: F401
21
23
  from .version import VERSION # noqa: F401
22
24
 
@@ -38,6 +40,7 @@ __all__ = [
38
40
  #
39
41
  "Address",
40
42
  "Command",
43
+ "CommandInvalid",
41
44
  "Device",
42
45
  "Message",
43
46
  "Packet",
@@ -50,6 +53,8 @@ __all__ = [
50
53
  "Code",
51
54
  "IndexT",
52
55
  "VerbT",
56
+ #
57
+ "exceptions",
53
58
  ]
54
59
 
55
60
  _LOGGER = logging.getLogger(__name__)