Upgrading to `pytest-asyncio==0.26.0`: ```python import pytest_asyncio from httpx import AsyncClient @pytest_asyncio.fixture(scope="function") def server_async_client() -> AsyncClient: ... ``` I get this error from `mypy`: ```none a.py:5:2: error: Value of type variable "_R" of function cannot be "AsyncClient" [type-var] @pytest_asyncio.fixture(scope="function") ^ ``` This is with Python 3.12.7 and the following packages: ```none httpx 0.27.2 mypy 1.15.0 pytest 8.3.5 pytest-asyncio 0.25.3 ```