Skip to content

Commit

Permalink
chore(pre-commit.ci): auto fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jul 1, 2024
1 parent 38263bb commit c05a500
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/xiaomi_ble/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
MIT License applies.
"""

from __future__ import annotations

from sensor_state_data import (
Expand Down
1 change: 1 addition & 0 deletions src/xiaomi_ble/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Constants for Xiaomi BLE advertisements."""

from enum import Enum

from sensor_state_data import BaseDeviceClass
Expand Down
1 change: 1 addition & 0 deletions src/xiaomi_ble/events.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Event constants for xiaomi-ble."""

from __future__ import annotations

from sensor_state_data.enum import StrEnum
Expand Down
1 change: 1 addition & 0 deletions src/xiaomi_ble/locks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Constants for Xiaomi Locks."""

from enum import Enum


Expand Down
1 change: 1 addition & 0 deletions src/xiaomi_ble/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
https://github.com/Ernst79/bleparser/blob/c42ae922e1abed2720c7fac993777e1bd59c0c93/package/bleparser/xiaomi.py
MIT License applies.
"""

from __future__ import annotations

import datetime
Expand Down
1 change: 1 addition & 0 deletions tests/test_parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The tests for the Xiaomi ble parser."""

import logging
from unittest.mock import patch

Expand Down

0 comments on commit c05a500

Please sign in to comment.