Skip to content

Commit fa5ed84

Browse files
committed
mqtt: client: fix imports ordering
1 parent 4a9898b commit fa5ed84

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

enapter/mqtt/client.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@
33
import logging
44
import ssl
55
import tempfile
6+
from typing import AsyncGenerator, Optional
67

78
import aiomqtt # type: ignore
89

910
import enapter
1011

11-
LOGGER = logging.getLogger(__name__)
12-
13-
from typing import AsyncGenerator, Optional
14-
1512
from .config import Config
1613

14+
LOGGER = logging.getLogger(__name__)
15+
1716

1817
class Client(enapter.async_.Routine):
1918
def __init__(self, config: Config) -> None:

0 commit comments

Comments
 (0)