Skip to content

Commit 6a09262

Browse files
bite 210
1 parent c2ce1ce commit 6a09262

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@
2929
/15/README.md
3030
/54/README.md
3131
/209/README.md
32+
/210/README.md

210/annotations.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from typing import List
2+
3+
4+
def sum_numbers(numbers: List[int]):
5+
"""Sums numbers
6+
7+
:param numbers: a list of numbers
8+
:type numbers: list
9+
:raises TypeError: if not all numeric values passed in
10+
:return: sum of numbers
11+
:rtype: int
12+
"""
13+
pass

210/test_annotations.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# tests are hidden for this Bite

0 commit comments

Comments
 (0)