From e74fe2082d934188086a33a294f8daca495d59fb Mon Sep 17 00:00:00 2001 From: Beni Cherniavsky-Paskin Date: Tue, 7 Jan 2025 15:49:29 +0200 Subject: [PATCH] Update _load_ips_psutil() docstring Followup to #1033, apparently docstring got copy-pasted from _load_ips_netifaces --- 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 9d4331e4..9f0a8608 100644 --- a/jupyter_client/localinterfaces.py +++ b/jupyter_client/localinterfaces.py @@ -160,7 +160,7 @@ def _load_ips_ipconfig() -> None: def _load_ips_psutil() -> None: - """load ip addresses with netifaces""" + """load ip addresses with psutil""" import psutil addr_dict: dict[str, list[str]] = {}