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 c201b55 commit ef2c286Copy full SHA for ef2c286
pypwext/pwhttp.py
@@ -458,7 +458,7 @@ def wrapper(*args, **kwargs):
458
459
# Extract the body data
460
body_data: bytes = None
461
- original_body: Optional[any] = None
+ original_body: Optional[Any] = None
462
463
if body and body in in_args:
464
@@ -629,7 +629,7 @@ def _invoke_lambda(
629
630
text = response.payload_as_text()
631
if text != '':
632
- d['body'] = self._try_to_dict(text)
+ d['body'] = self.adapter._try_to_dict(text)
633
634
self.logger.log(
635
self.adapter.out_level,
0 commit comments