2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-31 14:25:55 +00:00

Replace integer timestamps with datetime objects

This commit is contained in:
Dan
2022-04-24 11:56:06 +02:00
parent bbad58a83f
commit b697826b5a
48 changed files with 359 additions and 333 deletions

View File

@@ -18,7 +18,6 @@
import os
import sys
from datetime import datetime
sys.path.insert(0, os.path.abspath("../.."))
@@ -38,9 +37,14 @@ extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
"sphinx.ext.autosummary",
"sphinx.ext.intersphinx",
"sphinx_copybutton"
]
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None)
}
master_doc = "index"
source_suffix = ".rst"
autodoc_member_order = "bysource"