1from __future__ import annotations 2 3from pathlib import Path 4 5import pytest 6 7 8@pytest.fixture 9def io_files_path() -> Path: 10 return Path(__file__).parent / "files" 11 12