Switch from max-line-length=130 to more standard max-line-length=120 in .pylintrc.

This commit is contained in:
Davide Casale
2023-03-07 15:28:02 +01:00
parent af25f25d3b
commit 9e566bbc5a
7 changed files with 372 additions and 285 deletions

View File

@@ -26,7 +26,8 @@ class TestLabeler(unittest.TestCase):
msg="_Serializer::get_labels() should return the right list of labels.")
with self.assertRaises(LabelerSerializerException,
msg="_Serializer should raise LabelerSerializerException if given fewer arguments than the serializer labels."):
msg="_Serializer should raise LabelerSerializerException if given "
+ "fewer arguments than the serializer labels."):
serializer.parse(5, 65.0, "X")
def test_generate_recursive_serializer(self):