We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c422bc7 commit ca3475eCopy full SHA for ca3475e
tcod/path.py
@@ -473,7 +473,7 @@ def dijkstra2d( # noqa: PLR0913
473
Added `out` parameter. Now returns the output array.
474
"""
475
dist: NDArray[Any] = np.asarray(distance)
476
- if out is ...:
+ if out is ...: # type: ignore[comparison-overlap]
477
out = dist
478
warnings.warn(
479
"No `out` parameter was given. "
0 commit comments