From ebb38c65187c0f47a87a55eb267b48b3b481e771 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 13 Jan 2025 09:36:31 -0800 Subject: [PATCH] style: Format test_io.py to comply with linter rules --- tests/basic/test_io.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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: