We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aec88e1 commit 95cd73fCopy full SHA for 95cd73f
coverage_conditional_plugin/__init__.py
@@ -44,10 +44,7 @@ def configure(self, config: CoverageConfig) -> None:
44
config.get_option(self._rules_opt_name).splitlines(),
45
)
46
except AttributeError: # toml format
47
- rules = (
48
- rule
49
- for rule in config.get_option(self._rules_opt_name).items()
50
- )
+ rules = config.get_option(self._rules_opt_name).items()
51
52
for rule in rules:
53
self._process_rule(config, rule)
0 commit comments