Skip to content

Commit 8f315a1

Browse files
committed
=Fix ruff
1 parent 214a47e commit 8f315a1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/opensky/opensky.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,10 @@ async def states(self) -> StatesResponse:
144144
"category",
145145
]
146146

147-
data = {**data, "states": [dict(zip(keys, state, strict=True)) for state in data["states"]]}
147+
data = {
148+
**data,
149+
"states": [dict(zip(keys, state, strict=True)) for state in data["states"]],
150+
}
148151

149152
return StatesResponse.parse_obj(data)
150153

0 commit comments

Comments
 (0)