Skip to content

Commit a5d9bf1

Browse files
committed
chore: fix lint errors
1 parent e7695d1 commit a5d9bf1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/fixtures/mqtt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def handle_socket_recv(self, read_size: int) -> bytes:
4646
self.response_buf.seek(0)
4747
data = self.response_buf.read(read_size)
4848
_LOGGER.debug("Response: 0x%s", data.hex())
49-
49+
5050
# Consume the rest of the data in the buffer
5151
remaining_data = self.response_buf.read()
5252
self.response_buf = io.BytesIO(remaining_data)

tests/fixtures/pahomqtt_fixtures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
"""Common code for MQTT tests."""
22

33
import logging
4+
import warnings
45
from collections.abc import Callable, Generator
56
from queue import Queue
67
from typing import Any
78
from unittest.mock import Mock, patch
8-
import warnings
99

1010
import pytest
1111

0 commit comments

Comments
 (0)