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 896a6fc commit 7fecf51Copy full SHA for 7fecf51
temporalio/client.py
@@ -2939,6 +2939,7 @@ class WorkflowExecution:
2939
2940
@property
2941
def data_converter(self) -> temporalio.converter.DataConverter:
2942
+ """Data converter for the workflow."""
2943
0 / 0 # type: ignore
2944
return self._context_free_data_converter.with_context(
2945
WorkflowSerializationContext(
temporalio/worker/_command_aware_visitor.py
@@ -81,6 +81,7 @@ class CommandAwarePayloadVisitor(PayloadVisitor):
81
}
82
83
def __init__(self, **kwargs: Any) -> None:
84
+ """Initialize the command-aware payload visitor."""
85
super().__init__(**kwargs)
86
self._create_override_methods()
87
0 commit comments