From 176c28ba841d1f528d97751d008f7c22c87efd09 Mon Sep 17 00:00:00 2001 From: Sergii Dymchenko Date: Tue, 11 Apr 2023 17:55:25 -0700 Subject: [PATCH] Remove non-existing ip_str parameter from _explode_shorthand_ip_string's docstring --- Lib/ipaddress.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/Lib/ipaddress.py b/Lib/ipaddress.py index 1cb71d8032e173..af1d5c4800cce8 100644 --- a/Lib/ipaddress.py +++ b/Lib/ipaddress.py @@ -1821,9 +1821,6 @@ def _string_from_ip_int(cls, ip_int=None): def _explode_shorthand_ip_string(self): """Expand a shortened IPv6 address. - Args: - ip_str: A string, the IPv6 address. - Returns: A string, the expanded IPv6 address.