Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions hass_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
"""Provide a package for hass-client."""

from .client import HomeAssistantClient # noqa: F401
1 change: 1 addition & 0 deletions hass_client/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Constants for the Home Assistant Websocket client."""

from typing import Final

# Can be used to specify a catch all when registering state or event listeners.
Expand Down
1 change: 1 addition & 0 deletions hass_client/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Various helpers and utilities."""

from __future__ import annotations

import asyncio
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ test = [
"pytest==8.2.0",
"pytest-aiohttp==1.0.5",
"pytest-cov==4.1.0",
"ruff==0.2.1",
"ruff==0.4.4",
"safety==3.0.1",
]

Expand Down