We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85ff12b commit 61077dfCopy full SHA for 61077df
docs/conf.py
@@ -57,8 +57,14 @@
57
58
# General information about the project.
59
project = "Adafruit INA260 Library"
60
+creation_year = "2019"
61
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Bryan Siepert"
62
+year_duration = (
63
+ current_year
64
+ if current_year == creation_year
65
+ else creation_year + " - " + current_year
66
+)
67
+copyright = year_duration + " Bryan Siepert"
68
author = "Bryan Siepert"
69
70
# The version info for the project you're documenting, acts as replacement for
0 commit comments