Skip to content

Commit d4eca2c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 085e081 commit d4eca2c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

jupyter_client/localinterfaces.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
import re
88
import socket
99
import subprocess
10+
from collections.abc import Iterable, Mapping, Sequence
1011
from subprocess import PIPE, Popen
11-
from typing import Any, Callable, Iterable, Mapping, Sequence
12+
from typing import Any, Callable
1213
from warnings import warn
1314

1415
LOCAL_IPS: list[str] = []

jupyter_client/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from __future__ import annotations
77

88
import os
9-
from typing import Sequence
9+
from collections.abc import Sequence
1010

1111
from jupyter_core.utils import ensure_async, run_sync # noqa: F401 # noqa: F401
1212

0 commit comments

Comments
 (0)