Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 29, 2024
1 parent 280cfcc commit 50a907e
Show file tree
Hide file tree
Showing 91 changed files with 91 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/module_status_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This test checks if with an incoming module_status message the selected program
is correctly stored into the module.
"""

import pathlib

import pytest
Expand Down
1 change: 1 addition & 0 deletions tests/thermostat_operating_mode_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This test checks if with an incoming temp_sensor_status message the thermostat operating mode and
sleep_timer values are correctly stored into the module's temperature channel.
"""

import logging
import pathlib

Expand Down
1 change: 1 addition & 0 deletions velbusaio/channels.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
author: Maikel Punie <[email protected]>
"""

from __future__ import annotations

import asyncio
Expand Down
1 change: 1 addition & 0 deletions velbusaio/command_registry.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Maikel Punie <[email protected]> and Thomas Delaet <[email protected]>
"""

from __future__ import annotations

MODULE_DIRECTORY = {
Expand Down
1 change: 1 addition & 0 deletions velbusaio/const.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Author: Maikel Punie <[email protected]>
"""

from __future__ import annotations

from typing import Final
Expand Down
1 change: 1 addition & 0 deletions velbusaio/controller.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Main interface for the velbusaio lib
"""

from __future__ import annotations

import asyncio
Expand Down
1 change: 1 addition & 0 deletions velbusaio/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Velbus packet handler
:Author maikel punie <[email protected]>
"""

from __future__ import annotations

import asyncio
Expand Down
1 change: 1 addition & 0 deletions velbusaio/helpers.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Helper functions
"""

from __future__ import annotations

import os
Expand Down
1 change: 1 addition & 0 deletions velbusaio/message.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
The velbus abstract message class
"""

from __future__ import annotations

import json
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.messages.blind_status import BlindStatusMessage, BlindStatusNgMessage
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/blind_status.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Tom Dupré <[email protected]>
"""

from __future__ import annotations

import json
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/bus_active.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/bus_error_counter_status.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/bus_error_counter_status_request.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/bus_off.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/channel_name_part1.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/channel_name_part2.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/channel_name_part3.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/channel_name_request.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]> and Maikel Punie <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/clear_led.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/counter_status.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Maikel Punie <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/counter_status_request.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Maikel Punie <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/cover_down.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Tom Dupré <[email protected]>
"""

from __future__ import annotations

import struct
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/cover_off.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Tom Dupré <[email protected]>
"""

from __future__ import annotations

import struct
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/cover_position.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Maikel Punie <[email protected]>
"""

from __future__ import annotations

import struct
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/cover_up.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Tom Dupré <[email protected]>
"""

from __future__ import annotations

import struct
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/dali_device_settings.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Niels Laukens
"""

from __future__ import annotations

import dataclasses
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/dali_device_settings_request.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Niels Laukens
"""

from __future__ import annotations

import enum
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/dali_dim_value_status.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Niels Laukens
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/dimmer_channel_status.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Frank van Breugel
"""

from __future__ import annotations

import struct
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/dimmer_status.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Frank van Breugel
"""

from __future__ import annotations

import struct
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/edge_set_custom_color.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Maikel Punie <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/fast_blinking_led.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/forced_off.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Maikel Punie <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/forced_on.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Maikel Punie <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/interface_status_request.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/ir_receiver_status.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: David Danssaert <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/kwh_status.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Maikel Punie <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/light_value_request.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Maikel Punie <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/memo_text.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Maikel Punie <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/memory_data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/memory_data_block.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/memory_dump_request.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/module_status.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/module_status_request.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/module_subtype.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

import struct
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/module_type.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

import struct
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/module_type_request.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.message import Message
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/push_button_status.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Thomas Delaet <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
1 change: 1 addition & 0 deletions velbusaio/messages/raw.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
:author: Maikel Punie <[email protected]>
"""

from __future__ import annotations

from velbusaio.command_registry import register
Expand Down
Loading

0 comments on commit 50a907e

Please sign in to comment.