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
In the read_csv docstring, under "See Also" it lists itself instead of some other relevant function such as read_table. This is apparently because read_csv and read_table share a docstring template but this value was not parameterized like other details such as the function summary string and the default sep value.
Suggested fix for documentation
I suggest replacing read_csv with read_table in the "See Also" section. This could be done by adding another string formatting parameter when the @Appender decorator is called for both the read_csv and read_table functions, such that they include the other under "See Also".