Skip to content

Commit cedf171

Browse files
committed
Fix formatting
1 parent 0dfd579 commit cedf171

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ async def main():
2727
data.meta["altitude"],
2828
)
2929

30-
30+
3131
if __name__ == "__main__":
3232
asyncio.run(main())

tests/test_timeout.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
SENSOR_ID = 1
1010

11+
1112
@pytest.mark.asyncio
1213
async def test_connect_timeout(httpx_mock: HTTPXMock):
1314
"""Test if the connection is hitting the timeout during connect."""
@@ -24,6 +25,7 @@ def raise_timeout(request):
2425
client = Luftdaten(SENSOR_ID)
2526
await client.get_data()
2627

28+
2729
@pytest.mark.asyncio
2830
async def test_read_timeout(httpx_mock: HTTPXMock):
2931
"""Test if the connection is hitting the timeout during data reading."""

0 commit comments

Comments
 (0)