diff --git a/tests/test_tutorial/test_background_tasks/conftest.py b/tests/test_tutorial/test_background_tasks/conftest.py index 5106d7e04..88d9b4b72 100644 --- a/tests/test_tutorial/test_background_tasks/conftest.py +++ b/tests/test_tutorial/test_background_tasks/conftest.py @@ -1,11 +1,12 @@ import os -import pytest from pathlib import Path +import pytest + @pytest.fixture(name="path_to_log_file") def log_path(): log = Path("log.txt") yield log if log.is_file(): - os.remove(log) # pragma: no cover \ No newline at end of file + os.remove(log) # pragma: no cover