Skip to content

Commit

Permalink
added default params to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jaswanth098 committed Aug 26, 2019
1 parent b190cde commit e3fca54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e3fca54

Please sign in to comment.