-
-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DataFrame.replace incompatible with type "dict[str, dict[int, int]]" #1161
Comments
I have created an issue for pyright as well, because I am not entirely sure where the problem is : microsoft/pyright#10057 |
I think this can be fixed. I tried it with a simple example. In to_replace: ReplaceValue | Mapping[Hashable, ReplaceValue] to to_replace: ReplaceValue | Mapping[HashableT2, ReplaceValue] It may be necessary to create a PR with tests welcome. Tagging @MarcoGorelli since he made the change to the stubs for |
thanks for the ping I'm a bit confused by this one: b: Mapping[Hashable, ReplaceValue] = {'c': {0:1}} # type-checks fine
b: Mapping[Hashable, ReplaceValue] = replace_dict # Type "dict[str, dict[int, int]]" is not assignable to declared type "Mapping[Hashable, ReplaceValue]" taking a look even simpler: replace_val = {0:1}
a: ReplaceValue = {0:1}
a: ReplaceValue = replace_val # Type "dict[int, int]" is not assignable to declared type "ReplaceValue" |
See the discussion in this comment microsoft/pyright#10057 (comment) and below |
learned a couple of new things, thanks!
|
Describe the bug
Calling
DataFrame.replace(my_dict)
triggers a pyright error whenmy_dict
is of the typedict[str, dict[int, int]]
, which is odd because it does fit the accepted typeMapping[Hashable, ReplaceValue]
To Reproduce
This code triggers a pyright error:
This code does not. instead of defining a dict and giving it, we construct directly in the function call.
I am not sure exactly if this is a pyright or a pandas stubs problem.
Please complete the following information:
pyright 1.1.396
pandas-stubs
:2.2.3.250308
The text was updated successfully, but these errors were encountered: