Skip to content

Commit

Permalink
dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemanspiff2007 committed Dec 10, 2024
1 parent 31579c5 commit 200ab3f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
sphinx == 8.1.3
sphinx-autodoc-typehints == 2.5.0
sphinx_rtd_theme == 3.0.2
sphinx-exec-code == 0.14
sphinx-exec-code == 0.15
autodoc_pydantic == 2.2.0
sphinx-copybutton == 0.5.2
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Packages for source formatting
# -----------------------------------------------------------------------------
pre-commit == 4.0.1
ruff == 0.8.1
ruff == 0.8.2
autotyping == 24.9.0
# -----------------------------------------------------------------------------
# Packages for other developement tasks
Expand Down
6 changes: 3 additions & 3 deletions requirements_setup.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aiohttp == 3.11.9
pydantic == 2.10.2
aiohttp == 3.11.10
pydantic == 2.10.3
bidict == 0.23.1
watchdog == 6.0.0
ujson == 5.10.0
Expand All @@ -8,7 +8,7 @@ aiomqtt == 2.3.0
eascheduler == 0.2.1

immutables == 0.21
easyconfig == 0.3.2
easyconfig == 0.4.0
stack_data == 0.6.3
colorama == 0.4.6
fastnumbers == 5.1.0
Expand Down
6 changes: 4 additions & 2 deletions src/HABApp/rule/rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,13 @@ def __init__(self) -> None:
self.openhab: Final = self.oh

def on_rule_loaded(self) -> None:
"""Override this to implement logic that will be called when the rule and the file has been successfully loaded
"""Override this to method to implement logic that will be called when
the rule and the file has been successfully loaded. Can be sync or async.
"""

def on_rule_removed(self) -> None:
"""Override this to implement logic that will be called when the rule has been unloaded.
"""Override this method to implement logic that will be called when the rule has been unloaded.
Can be sync or async.
"""

def __repr__(self) -> str:
Expand Down

0 comments on commit 200ab3f

Please sign in to comment.