Skip to content
Snippets Groups Projects

Beekeepy: Add session holder class and session token handling

Merged Krzysztof Mochocki requested to merge kmochocki/beekeepy into develop
Compare and Show latest version
27 files
+ 303
125
Compare changes
  • Side-by-side
  • Inline
Files
27
@@ -19,7 +19,7 @@ class AbstractCommunicator(ABC):
"""Provides basic interface for communicators, which can implement communications using different way."""
def __init__(self, *args: Any, settings: CommunicationSettings | None = None, **kwargs: Any) -> None:
self.__settings = settings or CommunicationSettings()
self.__settings = (settings or CommunicationSettings()).copy()
super().__init__(*args, **kwargs)
@property
Loading