Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
assignment type checking errors in from_array
  • Loading branch information
omarwael-24 committed May 29, 2026
commit 47bc8df8571df845294424f966549aa4ee419141
2 changes: 1 addition & 1 deletion dask/array/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -3674,7 +3674,7 @@ def from_array(
token = tokenize(x, chunks, lock, asarray, fancy, getitem, inline_array)
name = name or f"array-{token}"
elif name is False:
name = f"array-{uuid.uuid1()}"
name = f"array-{uuid.uuid1()}"# type: ignore[unreachable]

if lock is True:
lock = SerializableLock()
Expand Down