Skip to content

Commit 3a11339

Browse files
committed
Fix import order to make pylint happy
1 parent 87689ec commit 3a11339

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

asyncssh/saslprep.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@
3131
# pylint: disable=deprecated-module
3232
import stringprep
3333
# pylint: enable=deprecated-module
34+
import unicodedata
35+
3436
from typing import Callable, Optional, Sequence
3537
from typing_extensions import Literal
36-
import unicodedata
3738

3839

3940
class SASLPrepError(ValueError):

0 commit comments

Comments
 (0)