Skip to content

Commit 658269d

Browse files
matusvaloDanielNoord
authored andcommitted
Added missing-type-doc message example
1 parent 5c3127c commit 658269d

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
def integer_sum(a, b): # [missing-type-doc]
2+
"""Returns sum of two integers
3+
:param a: first integer
4+
:type a: int
5+
:param b: second integer
6+
"""
7+
return a + b
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
def integer_sum(a, b):
2+
"""Returns sum of two integers
3+
:param a: first integer
4+
:type a: int
5+
:param b: second integer
6+
:type b: int
7+
"""
8+
return a + b

0 commit comments

Comments
 (0)