Skip to content

Commit 7afd79b

Browse files
author
boraxpr
committed
bux fix
1 parent 3fe6986 commit 7afd79b

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

180/names.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,5 @@
1717
def group_names_by_country(data: str = data) -> defaultdict:
1818
countries = defaultdict(list)
1919
# you code
20-
sorted(countries.items())
21-
return countries
20+
return sorted(countries.items())
2221

23-
24-
# x = group_names_by_country(data)
25-
# print(x)

0 commit comments

Comments
 (0)