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 051b718 commit 87eb719Copy full SHA for 87eb719
temporalio/workflow.py
@@ -1657,6 +1657,17 @@ def _assert_dynamic_handler_args(
1657
):
1658
# Old var-arg form
1659
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
1671
if (
1672
not arg_types
1673
or len(arg_types) != 2
0 commit comments