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 #23738 we fixed many cases where a space was missing before the colon splitting the parameter name and the type (e.g. name: str changed to name : str).
But in few cases spaces were added in places where they were not required or wrong, for example:
In directives: .. deprecated :: 0.21.0
In rst lists: Series : the user provides a pandas.Series object of the same
In code: "border" : {"top": "thin",
We should restore those cases and remove the added spaces.
The text was updated successfully, but these errors were encountered:
In #23738 we fixed many cases where a space was missing before the colon splitting the parameter name and the type (e.g.
name: str
changed toname : str
).But in few cases spaces were added in places where they were not required or wrong, for example:
.. deprecated :: 0.21.0
Series : the user provides a pandas.Series object of the same
"border" : {"top": "thin",
We should restore those cases and remove the added spaces.
The text was updated successfully, but these errors were encountered: