Commit ee2404c0 by stv

Fix Pylint: E0110(abstract-class-instantiated)

parent 2e1400f8
...@@ -119,8 +119,8 @@ class TestErrorModuleConstruction(unittest.TestCase): ...@@ -119,8 +119,8 @@ class TestErrorModuleConstruction(unittest.TestCase):
""" """
Test that error module construction happens correctly Test that error module construction happens correctly
""" """
def setUp(self): def setUp(self):
# pylint: disable=abstract-class-instantiated
super(TestErrorModuleConstruction, self).setUp() super(TestErrorModuleConstruction, self).setUp()
field_data = Mock(spec=FieldData) field_data = Mock(spec=FieldData)
self.descriptor = BrokenDescriptor( self.descriptor = BrokenDescriptor(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment