Skip to content

Commit c04c911

Browse files
[pywin32] Update LookupAccountSid to accept None for systemName (#14484)
1 parent 28758d2 commit c04c911

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/pywin32/win32/win32security.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def LogonUserEx(
4141
Username: str, Domain: str, Password: str, LogonType, LogonProvider
4242
) -> tuple[int, _win32typing.PySID, Incomplete, Incomplete]: ...
4343
def LookupAccountName(systemName: str | None, accountName: str, /) -> tuple[_win32typing.PySID, str, int]: ...
44-
def LookupAccountSid(systemName: str, sid: _win32typing.PySID, /) -> tuple[str, str, Incomplete]: ...
44+
def LookupAccountSid(systemName: str | None, sid: _win32typing.PySID, /) -> tuple[str, str, Incomplete]: ...
4545
def GetBinarySid(SID: str, /) -> _win32typing.PySID: ...
4646
def SetSecurityInfo(
4747
handle: int,

0 commit comments

Comments
 (0)