Use typing.Any for config type hinting instead

This commit is contained in:
Takeshi KOMIYA
2018-08-07 23:17:59 +09:00
parent 928b030915
commit 827dbea009

View File

@@ -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.