You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new limit_area argument is missing for the ffill overloads for frame.pyi.
This was seen in VSCode (pylance)
df=pd.DataFrame({'a': [1, 2, 3], 'b': [4, 5, 6]})
df2=df.sort_values('a') # This infers the type correctlydf3=df.ffill(limit=10) # This infers the type correctlydf4=df.ffill(limit_area='inside') # This cannot infer the type since the `.pyi` is missing `limit_area`
When running error checking for types with standard, the error message is: No overloads for "ffill" match the provided arguments Argument types: (Literal['inside'])
OS: Windows 10
python version: 3.12
version of type checker
version of installed pandas-stubs: This is using the latest version of pylance but I'm not sure how to check the version of pandas-stubs used. However, I don't see the entry in the current latest commit in master
The text was updated successfully, but these errors were encountered:
The new
limit_area
argument is missing for theffill
overloads forframe.pyi
.This was seen in VSCode (pylance)
When running error checking for types with standard, the error message is:
No overloads for "ffill" match the provided arguments Argument types: (Literal['inside'])
pandas-stubs
: This is using the latest version of pylance but I'm not sure how to check the version of pandas-stubs used. However, I don't see the entry in the current latest commit in masterThe text was updated successfully, but these errors were encountered: