Skip to content

Commit 2250caa

Browse files
committed
Linting
1 parent 96727f7 commit 2250caa

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pyhilo/devices.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def attributes_list(self) -> list[Union[int, dict[int, list[str]]]]:
3838
]
3939

4040
def parse_values_received(self, values: list[dict[str, Any]]) -> list[HiloDevice]:
41-
"""Places value received in a dict while removing null attributes,
41+
"""Places value received in a dict while removing null attributes,
4242
this returns values to be mapped to devices.
4343
"""
4444
readings = []
@@ -110,7 +110,7 @@ async def update(self) -> None:
110110
async def update_devicelist_from_signalr(
111111
self, values: list[dict[str, Any]]
112112
) -> list[HiloDevice]:
113-
#ic-dev21 not sure if this is dead code?
113+
# ic-dev21 not sure if this is dead code?
114114
new_devices = []
115115
for raw_device in values:
116116
LOG.debug(f"Generating device {raw_device}")

pyhilo/graphql.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,9 @@ async def subscribe_to_device_updated(
574574
await asyncio.sleep(5)
575575
try:
576576
await self.call_get_location_query(location_hilo_id)
577-
LOG.debug("subscribe_to_device_updated, call_get_location_query success")
577+
LOG.debug(
578+
"subscribe_to_device_updated, call_get_location_query success"
579+
)
578580

579581
except Exception as e2:
580582
LOG.error(

0 commit comments

Comments
 (0)