From e3fca543d2710dd034001f7c0732637b89741397 Mon Sep 17 00:00:00 2001 From: jaswanth098 Date: Mon, 26 Aug 2019 10:56:07 +0530 Subject: [PATCH] added default params to readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1cb9b8e..f651f18 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ from kwikapi import API # Core logic that you want to expose as a service class Calc(object): - def add(self, a: int, b: int) -> int: + def add(self, a: int=10, b: int=20) -> int: return a + b def subtract(self, a: int, b: int) -> int: