mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 09:50:01 +00:00
fix lint
This commit is contained in:
parent
acdcdbccd2
commit
1c33b7efc7
2 changed files with 3 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import datetime
|
||||
import struct
|
||||
from collections import namedtuple
|
||||
import typing as t
|
||||
from collections import namedtuple
|
||||
|
||||
|
||||
class ExtType(namedtuple("ExtType", "code data")):
|
||||
|
|
|
|||
|
|
@ -2,10 +2,10 @@
|
|||
|
||||
import struct
|
||||
import sys
|
||||
from datetime import datetime as _DateTime
|
||||
import typing as t
|
||||
import types
|
||||
import typing as t
|
||||
from collections.abc import Sequence
|
||||
from datetime import datetime as _DateTime
|
||||
|
||||
_ClassInfo: t.TypeAlias = type | types.UnionType | tuple['_ClassInfo', ...]
|
||||
_Pair = tuple[t.Any, t.Any]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue