We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acdcdbc commit 1c33b7eCopy full SHA for 1c33b7e
msgpack/ext.py
@@ -1,7 +1,7 @@
1
import datetime
2
import struct
3
-from collections import namedtuple
4
import typing as t
+from collections import namedtuple
5
6
7
class ExtType(namedtuple("ExtType", "code data")):
msgpack/fallback.py
@@ -2,10 +2,10 @@
import sys
-from datetime import datetime as _DateTime
-import typing as t
import types
+import typing as t
8
from collections.abc import Sequence
+from datetime import datetime as _DateTime
9
10
_ClassInfo: t.TypeAlias = type | types.UnionType | tuple['_ClassInfo', ...]
11
_Pair = tuple[t.Any, t.Any]
0 commit comments