Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix lint
  • Loading branch information
peasoft committed Jan 2, 2026
commit 1c33b7efc781a4ea274a62011c9927a7fdec40f3
2 changes: 1 addition & 1 deletion msgpack/ext.py
Original file line number Diff line number Diff line change
@@ -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")):
Expand Down
4 changes: 2 additions & 2 deletions msgpack/fallback.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Loading