Merge pull request #5274 from tk0miya/refactor_config_Any

Use typing.Any for config type hinting instead
This commit is contained in:
Takeshi KOMIYA 2018-08-08 23:18:08 +09:00 committed by GitHub
commit ea03d0666f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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.