Skip to content

Commit bdeaffa

Browse files
committed
Fixes CI
1 parent 194c8c8 commit bdeaffa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

classes/_typeclass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ def decorator(implementation):
524524
# This means that this type has `__instancecheck__` defined,
525525
# which allows dynamic checks of what `isinstance` of this type.
526526
# That's why we also treat this type as a protocol.
527-
self._protocols[type_argument] = implementation
527+
self._protocols[type_argument] = implementation # type: ignore
528528

529529
if self._cache_token is None: # pragma: no cover
530530
if getattr(type_argument, '__abstractmethods__', None):

0 commit comments

Comments
 (0)