We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f66de0 commit e8aab74Copy full SHA for e8aab74
doc/data/messages/m/missing-param-doc/bad.py
@@ -1,6 +1,5 @@
1
-def integer_sum(a, b): # [missing-param-doc]
+def integer_sum(a: int, b): # [missing-param-doc]
2
"""Returns sum of two integers
3
:param a: first integer
4
- :type a: int
5
"""
6
return a + b
doc/data/messages/m/missing-param-doc/good.py
@@ -1,8 +1,6 @@
-def integer_sum(a, b):
+def integer_sum(a: int, b: int):
:param b: second integer
- :type b: int
7
8
0 commit comments