Closed derhintze closed 1 year ago
I think the following change will work:
In the two places where there are arguments for dtype
for read_excel
, we have
dtype: str | Dtype | dict[str, str | Dtype] | None = ...,
Should be changed to
dtype: str | Dtype | Mapping[str, str | NpDtype] | None = ...,
Yeah, thought sth like this, too. Could you have a look at the converters
arg, too? I think it's kind of like the same issue. Thanks!
Yeah, thought sth like this, too. Could you have a look at the
converters
arg, too? I think it's kind of like the same issue. Thanks!
Would need to see an example (and probably create another issue) that illustrates the issue for converters
Hi, I would like to work on this, thanks!
Describe the bug The dtype arg of read_excel does not accept
To Reproduce
running this through mypy yields:
Please complete the following information: