Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.

Black reformatting with Python 3 target. #17

Merged
merged 2 commits into from
Apr 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@
master_doc = "index"

# General information about the project.
project = u"adafruit_thermal_printer Library"
copyright = u"2017 Tony DiCola"
author = u"Tony DiCola"
project = "Adafruit Thermal Printer Library"
copyright = "2017 Tony DiCola"
author = "Tony DiCola"

# 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.
Expand Down Expand Up @@ -110,7 +110,7 @@
html_favicon = "_static/favicon.ico"

# Output file base name for HTML help builder.
htmlhelp_basename = "adafruit_thermal_printerLibrarydoc"
htmlhelp_basename = "AdafruitThermalPrinterLibrarydoc"

# -- Options for LaTeX output ---------------------------------------------

Expand All @@ -135,8 +135,8 @@
latex_documents = [
(
master_doc,
"adafruit_thermal_printerLibrary.tex",
u"adafruit_thermal_printer Library Documentation",
"AdafruitThermalPrinterLibrary.tex",
"Adafruit Thermal Printer Library Documentation",
author,
"manual",
),
Expand All @@ -149,8 +149,8 @@
man_pages = [
(
master_doc,
"adafruit_thermal_printerlibrary",
u"adafruit_thermal_printer Library Documentation",
"AdafruitThermalPrinterlibrary",
"Adafruit Thermal Printer Library Documentation",
[author],
1,
)
Expand All @@ -164,10 +164,10 @@
texinfo_documents = [
(
master_doc,
"adafruit_thermal_printerLibrary",
u" adafruit_thermal_printer Library Documentation",
"AdafruitThermalPrinterLibrary",
"Adafruit Thermal Printer Library Documentation",
author,
"adafruit_thermal_printerLibrary",
"AdafruitThermalPrinterLibrary",
"One line description of project.",
"Miscellaneous",
),
Expand Down