Skip to content

Commit f6473ee

Browse files
committed
🎨 remove redundant bound=object
1 parent 26cecd7 commit f6473ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/array_api_typing/_namespace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing import Protocol
55
from typing_extensions import TypeVar
66

7-
T_co = TypeVar("T_co", covariant=True, bound=object, default=ModuleType)
7+
T_co = TypeVar("T_co", covariant=True, default=ModuleType)
88

99

1010
class HasArrayNamespace(Protocol[T_co]):

0 commit comments

Comments
 (0)