Skip to content

Commit

Permalink
Annotate return type in example
Browse files Browse the repository at this point in the history
  • Loading branch information
Tadaboody authored and emmatyping committed Jan 7, 2019
1 parent c62b3e7 commit 4d90273
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typedpkg/sample.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
def ex(a: int, b: str):
return b + f'{a}'
def ex(a: int, b: str) -> str:
return b + f'{a}'

0 comments on commit 4d90273

Please sign in to comment.