Skip to content

Commit

Permalink
Locks pytest-httpx to a known working version
Browse files Browse the repository at this point in the history
  • Loading branch information
stumpylog committed Sep 30, 2024
1 parent cefa0ee commit ff4c45f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/gotenberg_client/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
else: # pragma: no cover
from typing_extensions import Self # noqa: F401

if sys.version_info > (3, 8): # pragma: no cover
from typing import Annotated
else: # pragma: no cover
from typing_extensions import Annotated # noqa: F401

WaitTimeType = Union[float, int]
FormFieldType = Union[bool, int, float, str]
PageSizeType = Union[float, int]
Expand Down

0 comments on commit ff4c45f

Please sign in to comment.