From 78f876627ad24aacc058c23f04c0394b1191c76e Mon Sep 17 00:00:00 2001 From: blag Date: Wed, 3 Feb 2021 19:20:12 -0800 Subject: [PATCH] Reformat docstring --- docs/conf.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 42efea2d3..200fe6c2d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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