Skip to content

Commit 0f86209

Browse files
committed
Ignore the arg type. Workaround for python/typeshed#14483.
1 parent fdd8436 commit 0f86209

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

path/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1206,7 +1206,7 @@ def get_owner(self) -> str: # pragma: nocover
12061206
self, win32security.OWNER_SECURITY_INFORMATION
12071207
)
12081208
sid = desc.GetSecurityDescriptorOwner()
1209-
account, domain, typecode = win32security.LookupAccountSid(None, sid)
1209+
account, domain, typecode = win32security.LookupAccountSid(None, sid) # type: ignore[arg-type]
12101210
return domain + '\\' + account
12111211

12121212
else:

0 commit comments

Comments
 (0)