From 90067c0d4b7d9a9bb995fb85fd960839fc7038e0 Mon Sep 17 00:00:00 2001 From: Dmitri Gavrilov Date: Sun, 24 Dec 2023 09:57:28 -0500 Subject: [PATCH] CI: flake8 --- bluesky_httpserver/tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bluesky_httpserver/tests/conftest.py b/bluesky_httpserver/tests/conftest.py index 785a500..20cba51 100644 --- a/bluesky_httpserver/tests/conftest.py +++ b/bluesky_httpserver/tests/conftest.py @@ -63,7 +63,7 @@ def setup_server_with_config_file(*, config_file_str, tmpdir, monkeypatch): Creates config file for the server in ``tmpdir/config/`` directory and sets up the respective environment variable. Sets ``tmpdir`` as a current directory. """ - print(f"SERVER CONFIGURATION:\n{'-'*50}\n{config_file_str}\n{'-'*50}") + print(f"SERVER CONFIGURATION:\n{'-' * 50}\n{config_file_str}\n{'-' * 50}") config_fln = "config_httpserver.yml" config_dir = os.path.join(tmpdir, "config") config_path = os.path.join(config_dir, config_fln)