Skip to content

Commit 982d3ed

Browse files
authored
fix link in comments
1 parent 6cb00c3 commit 982d3ed

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
169169
warn_unreachable = true
170170
disallow_untyped_defs = false
171171
disallow_incomplete_defs = false
172-
# array-api#589
172+
# data-apis/array-api#589
173173
disallow_any_expr = false
174174

175175
[[tool.mypy.overrides]]
@@ -186,7 +186,7 @@ pythonVersion = "3.10"
186186
pythonPlatform = "All"
187187
typeCheckingMode = "strict"
188188

189-
# array-api#589
189+
# data-apis/array-api#589
190190
reportAny = false
191191
reportExplicitAny = false
192192
reportUnknownMemberType = false

src/array_api_extra/_typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from types import ModuleType
44
from typing import Any
55

6-
# To be changed to a Protocol later (see array-api#589)
6+
# To be changed to a Protocol later (see data-apis/array-api#589)
77
Array = Any # type: ignore[no-any-explicit]
88

99
__all__ = ["Array", "ModuleType"]

tests/test_funcs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from array_api_extra import atleast_nd, cov, create_diagonal, expand_dims, kron, sinc
1414

1515
if TYPE_CHECKING:
16-
# To be changed to a Protocol later (see array-api#589)
16+
# To be changed to a Protocol later (see data-apis/array-api#589)
1717
Array = Any # type: ignore[no-any-explicit]
1818

1919

0 commit comments

Comments
 (0)