Fixup 2 additional whitespace warnings pep8 found

E241 multiple spaces after ','

cleanup in enum/runme.py and constants/runme.py
This commit is contained in:
Jon Schlueter 2015-05-08 10:35:04 -04:00
commit b909d0c680
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ print " Foo_LUDICROUS =", example.Foo.LUDICROUS
print "\nTesting use of enums with functions\n"
example.enum_test(example.RED, example.Foo.IMPULSE)
example.enum_test(example.BLUE, example.Foo.WARP)
example.enum_test(example.BLUE, example.Foo.WARP)
example.enum_test(example.GREEN, example.Foo.LUDICROUS)
example.enum_test(1234, 5678)