Skip to content

Commit b1fe294

Browse files
flying-sheepNISMAMJAD
authored andcommitted
Fix read_text usage (scverse#3710)
1 parent e597a67 commit b1fe294

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/scanpy/readwrite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@ def _read( # noqa: PLR0912, PLR0915
876876
"... assuming '.data' means tab or white-space separated text file"
877877
)
878878
logg.hint("change this by passing `ext` to sc.read")
879-
adata = read_text(filename, delimiter, first_column_names)
879+
adata = read_text(filename, delimiter, first_column_names=first_column_names)
880880
elif ext == "soft.gz":
881881
adata = _read_softgz(filename)
882882
elif ext == "loom":

0 commit comments

Comments
 (0)