Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e201590

Browse files
committedJun 26, 2025·
Fix broken test
Accidentally broken at f8077c5
1 parent 0e221c8 commit e201590

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎tests/nexus/test_handler.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,9 @@ def __call__(
250250
)
251251

252252
@sync_operation
253-
async def sync_operation_without_type_annotations(
254-
self, ctx: StartOperationContext, input: Input
255-
) -> Output:
256-
# The input type from the op definition in the service definition is used to deserialize the input.
253+
async def sync_operation_without_type_annotations(self, ctx, input):
254+
# Despite the lack of type annotations, the input type from the op definition in
255+
# the service definition is used to deserialize the input.
257256
return Output(
258257
value=f"from start method on {self.__class__.__name__} without type annotations: {input}"
259258
)

0 commit comments

Comments
 (0)
Please sign in to comment.