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 7f6feb4 commit efd715eCopy full SHA for efd715e
temporalio/converter.py
@@ -1319,7 +1319,7 @@ def decode_typed_search_attributes(
1319
if not metadata_type:
1320
continue
1321
key = temporalio.common.SearchAttributeKey._from_metadata_type(
1322
- k, v.metadata.get("type").decode()
+ k, metadata_type.decode()
1323
)
1324
if not key:
1325
tests/contrib/pydantic/models_2.py
@@ -200,7 +200,7 @@ def make_standard_types_object() -> StandardTypesModel:
200
201
202
203
-class StrictStandardTypesModel(StandardTypesModel, strict=True):
+class StrictStandardTypesModel(StandardTypesModel, strict=True): # type: ignore
204
pass
205
206
0 commit comments