Skip to content

Commit 4518a01

Browse files
author
Alan
committed
Remove # type:ignore[import-not-found].
1 parent 86257c8 commit 4518a01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jupyter_client/session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def json_unpacker(s: str | bytes) -> t.Any:
128128

129129

130130
try:
131-
import orjson # type:ignore[import-not-found]
131+
import orjson
132132
except ModuleNotFoundError:
133133
orjson = None
134134
orjson_packer, orjson_unpacker = json_packer, json_unpacker
@@ -154,7 +154,7 @@ def orjson_unpacker(s: str | bytes) -> t.Any:
154154

155155

156156
try:
157-
import msgpack # type:ignore[import-not-found]
157+
import msgpack
158158

159159
except ModuleNotFoundError:
160160
msgpack = None

0 commit comments

Comments
 (0)