Skip to content

Commit 184fbe1

Browse files
committed
Linting
1 parent a893320 commit 184fbe1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pyhilo/device/graphql_value_mapper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ class GraphqlValueMapper:
88
"""
99
A class to map GraphQL values to DeviceReading instances.
1010
"""
11+
1112
OnState = "on"
12-
13+
1314
def map_query_values(self, values: Dict[str, Any]) -> list[Dict[str, Any]]:
1415
readings: list[Dict[str, Any]] = []
1516
for device in values:

pyhilo/util/state.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ class RegistrationDict(TypedDict, total=False):
5858

5959
class FirebaseDict(TypedDict):
6060
"""Represents a dictionary containing Firebase information."""
61+
6162
fid: str | None
6263
name: str | None
6364
token: TokenDict

0 commit comments

Comments
 (0)