From ff284a2b4e1681c589e5bc145f66b7e8a4009dac Mon Sep 17 00:00:00 2001 From: Brendan Dahl Date: Thu, 28 Nov 2024 09:08:13 -0500 Subject: [PATCH] chore: fix outdated requirements --- requirements.txt | 4 +--- src/blueair_api/device.py | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index ff9ddd4..fcf012d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,3 @@ -setuptools>=42 -wheel -pip>=8.0.3,<24.4 ruff==0.8.0 aiohttp>=3.8.1 +typing-extensions diff --git a/src/blueair_api/device.py b/src/blueair_api/device.py index 62d19e4..4db6f0d 100644 --- a/src/blueair_api/device.py +++ b/src/blueair_api/device.py @@ -37,7 +37,7 @@ def __init__( self.uuid = uuid self.name = name self.mac = mac - _LOGGER.debug(f"creating blueair device: {self.name}") + _LOGGER.debug(f"creating blueair device: {self}") async def init(self): info = await self.api.get_info(self.uuid)