From 4598a878bdfee6d0c92469eea949b271d52ddcd1 Mon Sep 17 00:00:00 2001 From: Adrian Torres Date: Wed, 29 Nov 2023 10:36:30 +0100 Subject: [PATCH] Fix flake8 errors in existing code --- tests/test_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_tasks.py b/tests/test_tasks.py index 5314711..e6b33d2 100644 --- a/tests/test_tasks.py +++ b/tests/test_tasks.py @@ -16,7 +16,7 @@ def test_init(self, celery_app): Test that task initialization sets up the necessary attributes. """ task_instance = self._get_task_instance(celery_app) - assert task_instance._LockableTask__lock_key == f"tests.test_tasks.my_task_lock" + assert task_instance._LockableTask__lock_key == "tests.test_tasks.my_task_lock" assert task_instance._LockableTask__lock is None def test_standard_connection(self, celery_app):