From d6b0b68d54ec0a2f62bc88f944841c27888492db Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 12 Sep 2022 18:31:49 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_runtime_errors.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/test_runtime_errors.py b/tests/test_runtime_errors.py index 96e82a76..211c7a13 100644 --- a/tests/test_runtime_errors.py +++ b/tests/test_runtime_errors.py @@ -238,11 +238,11 @@ def test_directory_without_notebooks(capsys: "CaptureFixture") -> None: main(["black", "docs"]) _, err = capsys.readouterr() expected_err = ( - 'No valid notebooks found in given path(s)\n' - '\n' - '\x1b[1m\n' - 'If you believe the notebook(s) to be valid, please report a bug at ' - 'https://github.com/nbQA-dev/nbQA/issues \x1b[0m\n' - '\n' + "No valid notebooks found in given path(s)\n" + "\n" + "\x1b[1m\n" + "If you believe the notebook(s) to be valid, please report a bug at " + "https://github.com/nbQA-dev/nbQA/issues \x1b[0m\n" + "\n" ) assert err == expected_err