From 8a24ad29c8ccd03272bb36daddf2613aec503fe4 Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Tue, 25 Feb 2025 16:15:53 +0100 Subject: [PATCH] fix: flake8 lint for unused pytest in a test --- tests/test_store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_store.py b/tests/test_store.py index a992282..fc05ef1 100644 --- a/tests/test_store.py +++ b/tests/test_store.py @@ -1,6 +1,6 @@ # do not remove this import. This is needed for # pytest fixtures to work -import pytest +import pytest # noqa: F401 from senju.store_manager import StoreManager # noqa: F401