From 833f96807037e85445ac103d6fb6ad9c4fab65e4 Mon Sep 17 00:00:00 2001 From: Simon Feltman Date: Fri, 2 May 2014 21:36:25 -0700 Subject: PEP8 fixes Use infix 'not' instead of prefixed. Don't use double comments (##). Use space between comment and text. Un-comment tests that now work. Move broken (and won't fix) implicit int64 signal tests into a new skipped test function. --- tests/test_option.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_option.py') diff --git a/tests/test_option.py b/tests/test_option.py index 2900edd2..fe257464 100644 --- a/tests/test_option.py +++ b/tests/test_option.py @@ -71,7 +71,7 @@ class TestOption(unittest.TestCase): def test_parse_args_double_dash(self): options, args = self.parser.parse_args( ["test_option.py", "--", "-xxx"]) - #self.assertEqual(args, ["-xxx"]) + # self.assertEqual(args, ["-xxx"]) def test_parse_args_group(self): group = self._create_group() -- cgit v1.2.1