Skip to content

Commit

Permalink
Fix flake8 errors in existing code
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Torres committed Nov 29, 2023
1 parent c265126 commit 4598a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 4598a87

Please sign in to comment.