8000 DOC: resolve all GL03 docstring validation errors by jamescobonkerr · Pull Request #25525 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC: resolve all GL03 docstring validation errors #25525

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

Merged
merged 7 commits into from
Mar 10, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Move terminating quotes to same line to avoid line breaks
  • Loading branch information
jamescobonkerr committed Mar 10, 2019
commit 6e79af01cb6c19eccd27986e2c5e4a7fa6b55a98
3 changes: 1 addition & 2 deletions pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -4986,8 +4986,7 @@ def pipe(self, func, *args, **kwargs):
`agg` is an alias for `aggregate`. Use the alias.

A passed user-defined-function will be passed a Series for evaluation.
%(examples)s\
""")
%(examples)s""")

_shared_docs['transform'] = ("""
Call ``func`` on self producing a %(klass)s with transformed values
Expand Down
3 changes: 1 addition & 2 deletions pandas/core/groupby/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,7 @@ class providing the base-class of operations.

Examples
--------
%(examples)s\
"""
%(examples)s"""

_transform_template = """
Call function producing a like-indexed %(klass)s on each group and
Expand Down
0