From a7670ed37337de4e905e0e5477ee116ff8e76e9d Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 17 Sep 2024 10:39:30 +0200 Subject: [PATCH] remove unneeded type: ignore --- jupyter_client/localinterfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter_client/localinterfaces.py b/jupyter_client/localinterfaces.py index faa552b5..8e622f13 100644 --- a/jupyter_client/localinterfaces.py +++ b/jupyter_client/localinterfaces.py @@ -153,7 +153,7 @@ def _load_ips_ipconfig() -> None: def _load_ips_psutil() -> None: """load ip addresses with netifaces""" - import psutil # type: ignore[import-not-found] + import psutil global LOCALHOST local_ips = []