From a30ef0db040b515e39eb2a52179f895dc1550ef0 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Tue, 11 May 2021 01:46:26 -0700 Subject: [PATCH] pwd: fix positional-only args (#5413) Co-authored-by: hauntsaninja <> --- stdlib/pwd.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/pwd.pyi b/stdlib/pwd.pyi index ea5845200..83020c157 100644 --- a/stdlib/pwd.pyi +++ b/stdlib/pwd.pyi @@ -10,5 +10,5 @@ class struct_passwd(Tuple[str, str, int, int, str, str, str]): pw_shell: str def getpwall() -> List[struct_passwd]: ... -def getpwuid(uid: int) -> struct_passwd: ... -def getpwnam(name: str) -> struct_passwd: ... +def getpwuid(__uid: int) -> struct_passwd: ... +def getpwnam(__name: str) -> struct_passwd: ...