From 827dbea009b795ae9760cd3e3527d8edee037cf5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 7 Aug 2018 23:17:59 +0900 Subject: [PATCH] Use typing.Any for config type hinting instead --- sphinx/config.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sphinx/config.py b/sphinx/config.py index 7785423c7..ec54f1691 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -49,10 +49,6 @@ ConfigValue = NamedTuple('ConfigValue', [('name', str), ('rebuild', Union[bool, unicode])]) -#: represents the config value accepts any type of value. -Any = object() - - class ENUM(object): """represents the config value should be a one of candidates.