diff --git a/codespell_lib/_codespell.py b/codespell_lib/_codespell.py index df55894980..2befcf7158 100644 --- a/codespell_lib/_codespell.py +++ b/codespell_lib/_codespell.py @@ -402,7 +402,7 @@ def parse_options(args): cfg_files = ['setup.cfg', '.codespellrc'] if options.config: cfg_files.append(options.config) - config = configparser.ConfigParser() + config = configparser.ConfigParser(interpolation=None) # Read toml before other config files. toml_files_errors = list()