Fix typo in metaclasses (#39947)

This commit is contained in:
Massimiliano Culpo 2023-09-12 22:53:21 +02:00 committed by GitHub
parent fa9acb6a98
commit 60a5f70b80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,7 +175,7 @@ def windows_establish_runtime_linkage(self):
detectable_packages = collections.defaultdict(list)
class DetectablePackageMeta:
class DetectablePackageMeta(type):
"""Check if a package is detectable and add default implementations
for the detection function.
"""