We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c942cff commit b068511Copy full SHA for b068511
src/mock_vws/_requests_mock_server/mock_web_services_api.py
@@ -16,7 +16,7 @@
16
from typing import Any
17
from zoneinfo import ZoneInfo
18
19
-from beartype import beartype
+from beartype import BeartypeConf, beartype
20
from requests.models import PreparedRequest
21
22
from mock_vws._constants import ResultCodes, TargetStatuses
@@ -104,7 +104,7 @@ class MockVuforiaWebServicesAPI:
104
This implementation is tied to the implementation of ``responses``.
105
"""
106
107
- @beartype
+ @beartype(conf=BeartypeConf(is_pep484_tower=True))
108
def __init__(
109
self,
110
*,
0 commit comments