From 5d6c99b6473887b8ab301dea539c328b53a77f83 Mon Sep 17 00:00:00 2001 From: Luis Ferraz Date: Mon, 13 Mar 2023 23:31:41 +0100 Subject: [PATCH] correct readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 10d946a..c9ce650 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ Let's see a very simple example that sums 2 integers: class Add(Component): """Add two numbers.""" # NOTE: type definition is optional, but it helps with the intellisense. ;) - class InputsTyping(OutputParams): + class InputsTyping(InputParams): a: InputParam b: InputParam