From bd80a837f1f0ea61452fb7bd899986cc0be65ae0 Mon Sep 17 00:00:00 2001 From: Kattni Rembor Date: Thu, 9 Apr 2020 14:02:04 -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 0fc2be1..133f0eb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,18 +46,18 @@ master_doc = "index" # General information about the project. -project = u"Adafruit pixie Library" -copyright = u"2018 Limor Fried" -author = u"Limor Fried" +project = "Adafruit pixie Library" +copyright = "2018 Limor Fried" +author = "Limor Fried" # 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. @@ -148,7 +148,7 @@ ( master_doc, "AdafruitpixieLibrary.tex", - u"Adafruitpixie Library Documentation", + "Adafruitpixie Library Documentation", author, "manual", ), @@ -162,7 +162,7 @@ ( master_doc, "Adafruitpixielibrary", - u"Adafruit pixie Library Documentation", + "Adafruit pixie Library Documentation", [author], 1, ) @@ -177,7 +177,7 @@ ( master_doc, "AdafruitpixieLibrary", - u"Adafruit pixie Library Documentation", + "Adafruit pixie Library Documentation", author, "AdafruitpixieLibrary", "One line description of project.", From 455e5baaa19a46b3a7f07b743c9d8a8835e4bf51 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Thu, 9 Apr 2020 22:27:01 -0400 Subject: [PATCH 2/2] Capitalize "Pixie" in conf.py to match repo name. --- docs/conf.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 133f0eb..75c9c76 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,7 +46,7 @@ master_doc = "index" # General information about the project. -project = "Adafruit pixie Library" +project = "Adafruit Pixie Library" copyright = "2018 Limor Fried" author = "Limor Fried" @@ -147,8 +147,8 @@ latex_documents = [ ( master_doc, - "AdafruitpixieLibrary.tex", - "Adafruitpixie Library Documentation", + "AdafruitPixieLibrary.tex", + "Adafruit Pixie Library Documentation", author, "manual", ), @@ -161,8 +161,8 @@ man_pages = [ ( master_doc, - "Adafruitpixielibrary", - "Adafruit pixie Library Documentation", + "AdafruitPixielibrary", + "Adafruit Pixie Library Documentation", [author], 1, ) @@ -176,10 +176,10 @@ texinfo_documents = [ ( master_doc, - "AdafruitpixieLibrary", - "Adafruit pixie Library Documentation", + "AdafruitPixieLibrary", + "Adafruit Pixie Library Documentation", author, - "AdafruitpixieLibrary", + "AdafruitPixieLibrary", "One line description of project.", "Miscellaneous", ),