From 93d0abe34307deec1313de9f6564dddf8c1786c9 Mon Sep 17 00:00:00 2001 From: Kattni Rembor Date: Thu, 9 Apr 2020 15:10:29 -0400 Subject: [PATCH 1/2] Black reformatting with Python 3 target. --- docs/conf.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index e2155eb..b1f4454 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,18 +50,18 @@ master_doc = "index" # General information about the project. -project = u"Adafruit SEESAW Library" -copyright = u"2017 Dean Miller" -author = u"Dean Miller" +project = "Adafruit SEESAW Library" +copyright = "2017 Dean Miller" +author = "Dean Miller" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = u"1.0" +version = "1.0" # The full version, including alpha/beta/rc tags. -release = u"1.0" +release = "1.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -151,7 +151,7 @@ ( master_doc, "AdafruitSEESAWLibrary.tex", - u"Adafruit SEESAW Library Documentation", + "Adafruit SEESAW Library Documentation", author, "manual", ), @@ -165,7 +165,7 @@ ( master_doc, "adafruitSEESAWlibrary", - u"Adafruit SEESAW Library Documentation", + "Adafruit SEESAW Library Documentation", [author], 1, ) @@ -180,7 +180,7 @@ ( master_doc, "AdafruitSEESAWLibrary", - u"Adafruit SEESAW Library Documentation", + "Adafruit SEESAW Library Documentation", author, "AdafruitSEESAWLibrary", "One line description of project.", From 65709c3cfd6b21e5a7060f32dc2224cf0942a103 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Thu, 9 Apr 2020 21:53:20 -0400 Subject: [PATCH 2/2] Fix capitalization in conf.py --- docs/conf.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b1f4454..290119c 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ master_doc = "index" # General information about the project. -project = "Adafruit SEESAW Library" +project = "Adafruit seesaw Library" copyright = "2017 Dean Miller" author = "Dean Miller" @@ -125,7 +125,7 @@ html_favicon = "_static/favicon.ico" # Output file base name for HTML help builder. -htmlhelp_basename = "AdafruitSEESAWLibrarydoc" +htmlhelp_basename = "AdafruitseesawLibrarydoc" # -- Options for LaTeX output --------------------------------------------- @@ -150,8 +150,8 @@ latex_documents = [ ( master_doc, - "AdafruitSEESAWLibrary.tex", - "Adafruit SEESAW Library Documentation", + "Adafruitseesawibrary.tex", + "Adafruit seesaw Library Documentation", author, "manual", ), @@ -164,8 +164,8 @@ man_pages = [ ( master_doc, - "adafruitSEESAWlibrary", - "Adafruit SEESAW Library Documentation", + "adafruitseesawlibrary", + "Adafruit seesaw Library Documentation", [author], 1, )