From 6b8e66c725289be147d7e38c465babbe36000667 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 26 Mar 2025 13:01:31 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_tutorial/test_background_tasks/conftest.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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