Skip to content

Commit 1dfd6ab

Browse files
committed
Appeasing the Hound.
- pep8 and pycodestyle both missed the line length locally.
1 parent 2af95ec commit 1dfd6ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/framework/easyconfigparser.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ def test_easyconfig_constants(self):
184184
for constant_name in constants:
185185
self.assertTrue(isinstance(constant_name, string_type), "Constant name %s is a string" % constant_name)
186186
val = constants[constant_name]
187-
self.assertTrue(isinstance(val, (string_type, dict, tuple)), "Constant value %s is a string, dict or tuple" % val)
187+
self.assertTrue(isinstance(val, (string_type, dict, tuple)),
188+
"Constant value %s is a string, a dict or a tuple" % val)
188189

189190
# check a couple of randomly picked constant values
190191
self.assertEqual(constants['SOURCE_TAR_GZ'], '%(name)s-%(version)s.tar.gz')

0 commit comments

Comments
 (0)