Skip to content

Breakout Requests Functionality to New Adapter Module #223

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 13 commits into from
Jul 19, 2018
Merged
Prev Previous commit
Next Next commit
Clarify purpose of newly added sphinx conf skip() method
  • Loading branch information
Jeffrey Hogan committed Jul 16, 2018
commit 1e573186752f47f25cd866141592c1517668a86c
3 changes: 3 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,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.
"""
if name == "__init__":
return False
return skip
Expand Down