Skip to content

Commit 57c7ed3

Browse files
committed
typos
1 parent 3094dc7 commit 57c7ed3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

basedtyping/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def __call__(cls, *args: object, **kwargs: object) -> T:
250250

251251
class ReifiedGeneric(
252252
Generic[T],
253-
# mypy doesn't support metaclasses with generics but it's needed for pyrright to correctly type the `__call__
253+
# mypy doesn't support metaclasses with generics but for pyright we need to correctly type the `__call__`
254254
# return type, otherwise all instances of `ReifiedGeneric` will have the wrong type
255255
metaclass=_ReifiedGenericMetaclass[Self], # type:ignore[misc]
256256
):

0 commit comments

Comments
 (0)