Coverage for src/fluree_py/http/protocol/mixin/request.py: 100%
4 statements
« prev ^ index » next coverage.py v7.8.0, created at 2025-04-02 03:03 +0000
« prev ^ index » next coverage.py v7.8.0, created at 2025-04-02 03:03 +0000
1from typing import Protocol
3from httpx import Request
6class SupportsRequestCreation(Protocol):
7 """Protocol for objects that support HTTP request creation."""
9 def get_request(self) -> Request: ...