Skip to content

Commit 58c5026

Browse files
committed
appease pydoctor
1 parent 11b41b5 commit 58c5026

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

temporalio/converter.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,18 @@ class SerializationContext(ABC):
7272
Provides contextual information during serialization and deserialization operations.
7373
7474
Examples:
75-
- In client code, when starting a workflow, or sending a signal/update/query to a workflow, or
75+
76+
* In client code, when starting a workflow, or sending a signal/update/query to a workflow, or
7677
receiving the result of an update/query, or handling an exception from a workflow, the context
7778
type is :py:class:`WorkflowSerializationContext` and the workflow ID set of the target
7879
workflow will be set in the context.
79-
- In workflow code, when operating on a payload being sent/received to/from a child workflow, or
80+
81+
* In workflow code, when operating on a payload being sent/received to/from a child workflow, or
8082
handling an exception from a child workflow, the context type is
8183
:py:class:`WorkflowSerializationContext` and the workflow ID is that of the child workflow,
8284
not of the currently executing (i.e. parent) workflow.
83-
- In workflow code, when operating on a payload to be sent/received to/from an activity, the
85+
86+
* In workflow code, when operating on a payload to be sent/received to/from an activity, the
8487
context type is :py:class:`ActivitySerializationContext` and the workflow ID is that of the
8588
currently-executing workflow. ActivitySerializationContext is also set on data converter
8689
operations in the activity context.

0 commit comments

Comments
 (0)