We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c0210e commit 52e905dCopy full SHA for 52e905d
docs/source/conf.py
@@ -18,6 +18,7 @@
18
19
import os
20
import sys
21
+from datetime import datetime
22
23
sys.path.insert(0, os.path.abspath("../.."))
24
@@ -28,7 +29,7 @@
28
29
FriendlyStyle.background_color = "#f3f2f1"
30
31
project = "Pyrogram"
-copyright = "2017-2021, Dan"
32
+copyright = f"2017-{datetime.now().year}, Dan"
33
author = "Dan"
34
35
extensions = [
@@ -68,6 +69,8 @@
68
69
"style_external_links": True
70
}
71
72
+napoleon_use_param = False
73
+
74
html_logo = "_images/pyrogram.png"
75
html_favicon = "_images/favicon.ico"
76
0 commit comments