diff --git a/tests/basic/test_io.py b/tests/basic/test_io.py index 5f56a278a..15de208b0 100644 --- a/tests/basic/test_io.py +++ b/tests/basic/test_io.py @@ -16,7 +16,9 @@ class TestInputOutput(unittest.TestCase): # Test valid line endings for ending in ["platform", "lf", "crlf"]: io = InputOutput(line_endings=ending) - self.assertEqual(io.newline, None if ending == "platform" else "\n" if ending == "lf" else "\r\n") + self.assertEqual( + io.newline, None if ending == "platform" else "\n" if ending == "lf" else "\r\n" + ) # Test invalid line endings with self.assertRaises(ValueError) as cm: