Skip to content

Commit 3245c4e

Browse files
committed
updated pyi
1 parent 33e1e8b commit 3245c4e

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

src/__init__.pyi

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def iterable_str_to_array_1d(
2929
) -> np.ndarray: ...
3030

3131
def delimited_to_arrays(
32-
__file_like: tp.Iterable[str],
32+
file_like: tp.Iterable[str],
3333
*,
3434
axis: int = 0,
3535
dtypes: tp.Optional[tp.Callable[[int], tp.Any]] = None,
@@ -47,8 +47,15 @@ def delimited_to_arrays(
4747

4848
def split_after_count(
4949
string: str,
50-
delimiter: str,
51-
count: int,
50+
*,
51+
delimiter: str = ',',
52+
count: int = 0;
53+
doublequote: bool = True,
54+
escapechar: str = '',
55+
quotechar: str = '"',
56+
quoting: int = 0,
57+
skipinitialspace: bool = False,
58+
strict: bool = False,
5259
) -> tp.Tuple[str, str]: ...
5360

5461
def count_iteration(__iterable: tp.Iterable) -> int: ...

0 commit comments

Comments
 (0)