From fd43e3509f559c55b61f92dacbd524cd42941b06 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 11 Apr 2020 14:19:18 -0400 Subject: =?UTF-8?q?Finish=20up=20#967.=20Thanks,=20Bern=C3=A1t=20G=C3=A1bo?= =?UTF-8?q?r?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- coverage/config.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'coverage/config.py') diff --git a/coverage/config.py b/coverage/config.py index 166f34ea..7876052b 100644 --- a/coverage/config.py +++ b/coverage/config.py @@ -421,6 +421,7 @@ class CoverageConfig(object): `value` is the new value for the option. """ + # Special-cased options. if option_name == "paths": self.paths = value return @@ -451,6 +452,7 @@ class CoverageConfig(object): Returns the value of the option. """ + # Special-cased options. if option_name == "paths": return self.paths -- cgit v1.2.1