Skip to content

Commit 32e9663

Browse files
committed
lint tweak
1 parent fed0d81 commit 32e9663

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

pixi.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ array-api-strict = "*"
6565
numpy = "*"
6666
pytest = "*"
6767
hypothesis = "*"
68-
dask-core = "*" # No distributed, tornado, etc.
68+
dask-core = "*" # No distributed, tornado, etc.
6969
# NOTE: don't add jax, pytorch, sparse, cupy here
7070
# as they slow down mypy and are not portable across target OSs
7171

@@ -303,7 +303,6 @@ messages_control.disable = [
303303
"missing-function-docstring", # numpydoc handles this
304304
"import-error", # mypy handles this
305305
"import-outside-toplevel", # optional dependencies
306-
"cyclic-import", # cyclic imports inside function bodies
307306
]
308307

309308

src/array_api_extra/_lib/_at.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def _op(
258258
Array
259259
Updated `x`.
260260
"""
261-
from ._funcs import apply_where
261+
from ._funcs import apply_where # pylint: disable=cyclic-import
262262

263263
x, idx = self._x, self._idx
264264
xp = array_namespace(x, y) if xp is None else xp

0 commit comments

Comments
 (0)