Skip to content

Commit 87eb719

Browse files
committed
DEV: ps
1 parent 051b718 commit 87eb719

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

temporalio/workflow.py

+11
Original file line numberDiff line numberDiff line change
@@ -1657,6 +1657,17 @@ def _assert_dynamic_handler_args(
16571657
):
16581658
# Old var-arg form
16591659
return False
1660+
1661+
if not (not arg_types or len(arg_types) != 2):
1662+
print()
1663+
print(arg_types[0], id(arg_types[0]), str, id(str))
1664+
print(
1665+
arg_types[1],
1666+
id(arg_types[1]),
1667+
Sequence[temporalio.common.RawValue],
1668+
id(Sequence[temporalio.common.RawValue]),
1669+
)
1670+
16601671
if (
16611672
not arg_types
16621673
or len(arg_types) != 2

0 commit comments

Comments
 (0)