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

1from typing import Protocol 

2 

3from httpx import Request 

4 

5 

6class SupportsRequestCreation(Protocol): 

7 """Protocol for objects that support HTTP request creation.""" 

8 

9 def get_request(self) -> Request: ...