From 48bcb0a4ccd30a9d00e58fe58827772e307a7e39 Mon Sep 17 00:00:00 2001 From: Finn Womack Date: Mon, 18 Jul 2022 12:30:17 -0700 Subject: [PATCH] reformat to pass pre-commit check --- tests/unit/test_logging.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/unit/test_logging.py b/tests/unit/test_logging.py index 02808f03f..3ba6ed57c 100644 --- a/tests/unit/test_logging.py +++ b/tests/unit/test_logging.py @@ -62,9 +62,7 @@ class TestIndentingFormatter: ), ], ) - def test_format_with_timestamp( - self, level_name: str, expected: str - ) -> None: + def test_format_with_timestamp(self, level_name: str, expected: str) -> None: record = self.make_record("hello\nworld", level_name=level_name) f = IndentingFormatter(fmt="%(message)s", add_timestamp=True) assert f.format(record) == expected