diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-21 09:25:23 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-21 09:25:23 -0400 |
commit | dd83d87cecb28ef014be663829f9d5849086ab85 (patch) | |
tree | 5e6bc18463f828bd1fc7ff239331718e50ee48ca /tests/test_cmdline.py | |
parent | a9a3b09140efa349e74f91f7bc2bfb70b5e2694a (diff) | |
download | python-coveragepy-dd83d87cecb28ef014be663829f9d5849086ab85.tar.gz |
Pylint upgrade and cleanup.
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r-- | tests/test_cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py index 038e921..08f7937 100644 --- a/tests/test_cmdline.py +++ b/tests/test_cmdline.py @@ -72,7 +72,7 @@ class CmdLineTest(CoverageTest): code = re.sub(r"(?m)^\.", "m2.", code) m2 = self.model_object() code_obj = compile(code, "<code>", "exec") - eval(code_obj, globals(), { 'm2': m2 }) + eval(code_obj, globals(), { 'm2': m2 }) # pylint: disable=eval-used # Many of our functions take a lot of arguments, and cmdline.py # calls them with many. But most of them are just the defaults, which |