From 89e66a8b58697de3516250dc9906569d0250ed55 Mon Sep 17 00:00:00 2001 From: "Alec.Schmidt" Date: Tue, 18 Mar 2025 10:14:08 +0100 Subject: [PATCH] fix: linter errors over conftest.py [no ci] --- src/tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/conftest.py b/src/tests/conftest.py index ed58e1a..ed50b44 100644 --- a/src/tests/conftest.py +++ b/src/tests/conftest.py @@ -5,7 +5,7 @@ from app import app # the client here allow to use the app without running in live server -# see https://flask.palletsprojects.com/en/2.0.x/testing/#sending-requests-with-the-test-client +# see https://flask.palletsprojects.com/en/2.0.x/testing/#sending-requests-with-the-test-client # noqa: E501 @pytest.fixture def client(): app.config['TESTING'] = True