From afd6c232f96063ae13d044393aae172326d634e3 Mon Sep 17 00:00:00 2001 From: Kattni Rembor Date: Wed, 8 Apr 2020 16:47:56 -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 bb7f6ea..69a159f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -42,18 +42,18 @@ master_doc = "index" # General information about the project. -project = u"Adafruit l3gd20 Library" -copyright = u"2018 Michael McWethy" -author = u"Michael McWethy" +project = "Adafruit l3gd20 Library" +copyright = "2018 Michael McWethy" +author = "Michael McWethy" # 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. @@ -144,7 +144,7 @@ ( master_doc, "Adafruitl3gd20Library.tex", - u"Adafruitl3gd20 Library Documentation", + "Adafruitl3gd20 Library Documentation", author, "manual", ), @@ -158,7 +158,7 @@ ( master_doc, "Adafruitl3gd20library", - u"Adafruit l3gd20 Library Documentation", + "Adafruit l3gd20 Library Documentation", [author], 1, ) @@ -173,7 +173,7 @@ ( master_doc, "Adafruitl3gd20Library", - u"Adafruit l3gd20 Library Documentation", + "Adafruit l3gd20 Library Documentation", author, "Adafruitl3gd20Library", "One line description of project.", From c2b337360522f751524ddb4212dae4d7b253e706 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Thu, 9 Apr 2020 22:24:12 -0400 Subject: [PATCH 2/2] Fix capitalization in conf.py --- docs/conf.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 69a159f..aaca24e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -42,7 +42,7 @@ master_doc = "index" # General information about the project. -project = "Adafruit l3gd20 Library" +project = "Adafruit L3GD20 Library" copyright = "2018 Michael McWethy" author = "Michael McWethy" @@ -118,7 +118,7 @@ html_favicon = "_static/favicon.ico" # Output file base name for HTML help builder. -htmlhelp_basename = "AdafruitL3gd20Librarydoc" +htmlhelp_basename = "AdafruitL3GD20Librarydoc" # -- Options for LaTeX output --------------------------------------------- @@ -143,8 +143,8 @@ latex_documents = [ ( master_doc, - "Adafruitl3gd20Library.tex", - "Adafruitl3gd20 Library Documentation", + "AdafruitL3GD20Library.tex", + "Adafruit L3GD20 Library Documentation", author, "manual", ), @@ -157,8 +157,8 @@ man_pages = [ ( master_doc, - "Adafruitl3gd20library", - "Adafruit l3gd20 Library Documentation", + "AdafruitL3GD20library", + "Adafruit L3GD20 Library Documentation", [author], 1, ) @@ -172,10 +172,10 @@ texinfo_documents = [ ( master_doc, - "Adafruitl3gd20Library", - "Adafruit l3gd20 Library Documentation", + "AdafruitL3GD20Library", + "Adafruit L3GD20 Library Documentation", author, - "Adafruitl3gd20Library", + "AdafruitL3GD20Library", "One line description of project.", "Miscellaneous", ),