Skip to content

Commit 1c33b7e

Browse files
committed
fix lint
1 parent acdcdbc commit 1c33b7e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

msgpack/ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import datetime
22
import struct
3-
from collections import namedtuple
43
import typing as t
4+
from collections import namedtuple
55

66

77
class ExtType(namedtuple("ExtType", "code data")):

msgpack/fallback.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
import struct
44
import sys
5-
from datetime import datetime as _DateTime
6-
import typing as t
75
import types
6+
import typing as t
87
from collections.abc import Sequence
8+
from datetime import datetime as _DateTime
99

1010
_ClassInfo: t.TypeAlias = type | types.UnionType | tuple['_ClassInfo', ...]
1111
_Pair = tuple[t.Any, t.Any]

0 commit comments

Comments
 (0)