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 f128dda commit d3c7d0cCopy full SHA for d3c7d0c
docs/conf.py
@@ -66,8 +66,14 @@
66
67
# General information about the project.
68
project = "Adafruit CLUE Library"
69
+creation_year = "2020"
70
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Kattni Rembor"
71
+year_duration = (
72
+ current_year
73
+ if current_year == creation_year
74
+ else creation_year + " - " + current_year
75
+)
76
+copyright = year_duration + " Kattni Rembor"
77
author = "Kattni Rembor"
78
79
# The version info for the project you're documenting, acts as replacement for
0 commit comments