Skip to content

Commit eaabc0d

Browse files
ceddlyburgeBethanyG
authored andcommitted
Remove TODO comments
Most of the other concept exercises up to this one communicate the requirement to implement the functions by using docstrings and `pass`, so I think it makes sense to be consistent and do it here as well.
1 parent f0b12a4 commit eaabc0d

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

exercises/concept/locomotive-engineer/locomotive_engineer.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""Functions which helps the locomotive engineer to keep track of the train."""
22

33

4-
# TODO: define the 'get_list_of_wagons' function
54
def get_list_of_wagons():
65
"""Return a list of wagons.
76
@@ -11,7 +10,6 @@ def get_list_of_wagons():
1110
pass
1211

1312

14-
# TODO: define the 'fixListOfWagons()' function
1513
def fix_list_of_wagons(each_wagons_id, missing_wagons):
1614
"""Fix the list of wagons.
1715
@@ -22,7 +20,6 @@ def fix_list_of_wagons(each_wagons_id, missing_wagons):
2220
pass
2321

2422

25-
# TODO: define the 'add_missing_stops()' function
2623
def add_missing_stops():
2724
"""Add missing stops to route dict.
2825
@@ -33,7 +30,6 @@ def add_missing_stops():
3330
pass
3431

3532

36-
# TODO: define the 'extend_route_information()' function
3733
def extend_route_information(route, more_route_information):
3834
"""Extend route information with more_route_information.
3935
@@ -44,7 +40,6 @@ def extend_route_information(route, more_route_information):
4440
pass
4541

4642

47-
# TODO: define the 'fix_wagon_depot()' function
4843
def fix_wagon_depot(wagons_rows):
4944
"""Fix the list of rows of wagons.
5045

0 commit comments

Comments
 (0)