From 82d7e94b9c5f60b87acfdd984934dbd641896701 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sun, 25 Jan 2026 10:39:56 +0100 Subject: [PATCH] chore: add return type on test --- tests/test_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_file.py b/tests/test_file.py index 4d65232..a2aa134 100644 --- a/tests/test_file.py +++ b/tests/test_file.py @@ -3,7 +3,7 @@ from python_multipart.multipart import File -def test_upload_dir_with_leading_slash_in_filename(tmp_path: Path): +def test_upload_dir_with_leading_slash_in_filename(tmp_path: Path) -> None: upload_dir = tmp_path / "upload" upload_dir.mkdir()