Browse Source

Fix typo in `Callable` type hinting

tags/v0.0.0-test.4
haixuanTao 3 years ago
parent
commit
525e46f2cb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      runtime/examples/python-operator/op.py

+ 1
- 1
runtime/examples/python-operator/op.py View File

@@ -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.



Loading…
Cancel
Save