Skip to content

Commit

Permalink
Run latest black
Browse files Browse the repository at this point in the history
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
  • Loading branch information
Noltari committed Feb 21, 2024
1 parent 84c43b8 commit 6b02aa1
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions aioairzone/common.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Airzone library common code."""

from __future__ import annotations

from enum import Enum, IntEnum
Expand Down
1 change: 1 addition & 0 deletions aioairzone/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Airzone library exceptions."""

from __future__ import annotations


Expand Down
1 change: 1 addition & 0 deletions aioairzone/hotwater.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Airzone Local API Domestic Hot Water."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions aioairzone/localapi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Airzone Local API."""

from __future__ import annotations

from dataclasses import dataclass
Expand Down
1 change: 1 addition & 0 deletions aioairzone/system.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Airzone Local API Device."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions aioairzone/thermostat.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Airzone Local API Thermostat."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions aioairzone/webserver.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Airzone Local API WebServer."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions aioairzone/zone.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Airzone Local API Device."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions examples/basic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Airzone basic example."""

import asyncio
import json
import timeit
Expand Down
1 change: 1 addition & 0 deletions examples/modify.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Airzone modify parameters example."""

import asyncio
import json
import time
Expand Down
1 change: 1 addition & 0 deletions examples/raw.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Airzone raw API data example."""

import asyncio
import json
import timeit
Expand Down

0 comments on commit 6b02aa1

Please sign in to comment.