From 525e46f2cb02f03c4729fe75a9b398a0253fbf3b Mon Sep 17 00:00:00 2001 From: haixuanTao Date: Tue, 28 Jun 2022 12:17:00 +0200 Subject: [PATCH] Fix typo in `Callable` type hinting --- runtime/examples/python-operator/op.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/examples/python-operator/op.py b/runtime/examples/python-operator/op.py index 0d12dc7b..afcfaa91 100644 --- a/runtime/examples/python-operator/op.py +++ b/runtime/examples/python-operator/op.py @@ -15,7 +15,7 @@ class Operator: self, input_id: str, value: bytes, - send_output: Callable[[str, bytes]], + send_output: Callable[[str, bytes], None], ): """Handle input by incrementing count by one.