diff options
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 |