pwd: fix positional-only args (#5413)

Co-authored-by: hauntsaninja <>
This commit is contained in:
Shantanu
2021-05-11 01:46:26 -07:00
committed by GitHub
parent f720ebb71e
commit a30ef0db04

View File

@@ -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: ...