mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 07:42:08 -04:00
add missing mypy type to quash error
This commit is contained in:
parent
a80c263480
commit
d3ccd149e9
1 changed files with 1 additions and 1 deletions
|
|
@ -133,7 +133,7 @@ def build_lexicon_config(lexicon_provider_name, lexicon_options, provider_option
|
|||
config.update(provider_options)
|
||||
else:
|
||||
# Lexicon 3.x
|
||||
provider_config = {}
|
||||
provider_config = {} # type: Dict[str, Any]
|
||||
provider_config.update(provider_options)
|
||||
config[lexicon_provider_name] = provider_config
|
||||
config = ConfigResolver().with_dict(config).with_env()
|
||||
|
|
|
|||
Loading…
Reference in a new issue