diff options
Diffstat (limited to 'sphinx/config.py')
-rw-r--r-- | sphinx/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/config.py b/sphinx/config.py index a9fdddc8a..418ecf4fb 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -255,7 +255,7 @@ class Config: return default(self) return default - def __getitem__(self, name: str) -> str: + def __getitem__(self, name: str) -> Any: return getattr(self, name) def __setitem__(self, name: str, value: Any) -> None: |