Skip to content

Commit 0d2fd52

Browse files
committed
Docs: fix reference
1 parent 0756cbc commit 0d2fd52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/metaclasses.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ so it's better not to combine metaclasses and class hierarchies:
9090
For some builtin types, mypy assumes that their metaclass is :py:class:`abc.ABCMeta`
9191
even if it's :py:class:`type`. In those cases, you can either
9292

93-
* use :py:class:`abc.ABCMetaclass` instead of :py:class:`type` as the
93+
* use :py:class:`abc.ABCMeta` instead of :py:class:`type` as the
9494
superclass of your metaclass if that works in your use case,
9595
* mute the error with ``# type: ignore[metaclass]``, or
9696
* compute the metaclass' superclass dynamically, which mypy doesn't understand

0 commit comments

Comments
 (0)