diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-12 10:47:08 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-12 10:47:08 -0500 |
commit | a15b90268f37d5f3a06b28ecb9277e636b493b1d (patch) | |
tree | 04fa3e38f18bb1489abd2004abca81b23eb5e3ac /coverage/config.py | |
parent | 460dd98dae56d26f0611a0f6dc9c24e44435958f (diff) | |
download | python-coveragepy-git-a15b90268f37d5f3a06b28ecb9277e636b493b1d.tar.gz |
mypy: progress on test_plugins.py
Diffstat (limited to 'coverage/config.py')
-rw-r--r-- | coverage/config.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/coverage/config.py b/coverage/config.py index ee30b8a4..046c1b00 100644 --- a/coverage/config.py +++ b/coverage/config.py @@ -20,7 +20,8 @@ from coverage.exceptions import ConfigError from coverage.misc import isolate_module, human_sorted_items, substitute_variables from coverage.tomlconfig import TomlConfigParser, TomlDecodeError from coverage.types import ( - TConfigurable, TConfigSectionIn, TConfigValueIn, TConfigSectionOut, TConfigValueOut, + TConfigurable, TConfigSectionIn, TConfigValueIn, TConfigSectionOut, + TConfigValueOut, TPluginConfig, ) os = isolate_module(os) @@ -166,7 +167,7 @@ DEFAULT_PARTIAL_ALWAYS = [ ] -class CoverageConfig(TConfigurable): +class CoverageConfig(TConfigurable, TPluginConfig): """Coverage.py configuration. The attributes of this class are the various settings that control the |