Skip to content

Commit

Permalink
Reformat docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
blag committed Feb 4, 2021
1 parent 95a4acb commit 78f8766
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/conf.py
Expand Up @@ -108,8 +108,9 @@


def skip(app, what, name, obj, skip, options):
"""Method to override default autodoc skip call. Ensures class constructor (e.g., __init__()) methods are included
regardless of if private methods are included in the documentation generally.
"""Method to override default autodoc skip call. Ensures class constructor
(e.g., __init__()) methods are included regardless of if private methods
are included in the documentation generally.
"""
if name == "__init__":
return False
Expand Down

0 comments on commit 78f8766

Please sign in to comment.