From f4cf0e977f9689e9a12b0c0f85c78df9586c39e3 Mon Sep 17 00:00:00 2001 From: Yajus Gakhar <68367873+Yajus114@users.noreply.github.com> Date: Thu, 28 Sep 2023 04:20:45 +0530 Subject: [PATCH] Update conf.py (#383) Removed unused `import datetime` import statement Fixes #382 --- docs/conf.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 38e2ea78..4eda04a0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,6 +22,7 @@ # -- Patch python domain signature regex to allow "foo-bar" style names ------ import re + # modified from sphinx/domains/python.py py_sig_re = re.compile( r'''^ ([\w.]*\.)? # class name(s) @@ -32,17 +33,14 @@ ''', re.VERBOSE) from sphinx.domains import python + python.py_sig_re = py_sig_re # -- Project information ----------------------------------------------------- -import datetime - project = "Fixit" copyright = f" Copyright © Meta Platforms, Inc. and affiliates" author = "" - - # -- General configuration --------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be