Skip to content

Commit 40894b6

Browse files
committed
More format fiddling.
1 parent 2f73fb3 commit 40894b6

File tree

1 file changed

+12
-12
lines changed
  • exercises/concept/guidos-gorgeous-lasagna

1 file changed

+12
-12
lines changed

exercises/concept/guidos-gorgeous-lasagna/lasagna.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,31 @@
99
# These are the expected function names with details to help you get started solving the exercise.
1010
# In general, they hint at expected functionality, along with expected input and return types.
1111
#
12-
# However, you can completely clear out the stubs before you start coding, although we recommend that you keep
13-
# them, because they are already set up to work with the tests, which you can find in ./lasagna_test.py.
14-
# If the tests don't find the expected function names, they will throw import errors.
12+
# However, you can completely clear out the stubs before you start coding. We recommend that
13+
# you keep them, because they are already set up to work with the tests, which you can find in
14+
# ./lasagna_test.py. If the tests don't find the expected names, they will throw import errors.
1515
#
1616
# ❗PLEASE NOTE❗ We are deviating a bit in this first exercise by asking you to practice defining
17-
# functions & docstrings. We give you one completed stub below (bake_time_remaining), but have omitted the stubs and
18-
# docstrings for the remaining two functions.
17+
# functions & docstrings. We give you one completed stub below (bake_time_remaining), but have
18+
# omitted the stubs and docstrings for the remaining two functions.
1919
#
2020
# We recommend copying the first stub + docstring, and then changing details like the function name
21-
# and docstring text to match what is asked for in the #TODO comments and instructions before getting started
22-
# with writing the code for each function body.
21+
# and docstring text to match what is asked for in the #TODO comments and instructions.
22+
# Once you have the correct stubs, you can get started with writing the code for each function body.
2323
#
2424
# ⭐ PS: You should remove explanation comment blocks like this one, and should also
2525
# remove any comment blocks that start with #TODO (or our analyzer will nag you about them)
2626
################################################################################################################
2727

2828

29-
# TODO: define the 'EXPECTED_BAKE_TIME' constant below.
29+
#TODO: define the 'EXPECTED_BAKE_TIME' constant below.
3030

3131

32-
# TODO: consider defining a 'PREPARATION_TIME' constant
32+
#TODO: consider defining a 'PREPARATION_TIME' constant
3333
# equal to the time it takes to prepare a single layer.
3434

3535

36-
# TODO: Remove 'pass' and complete the 'bake_time_remaining()' function below.
36+
#TODO: Remove 'pass' and complete the 'bake_time_remaining()' function below.
3737
def bake_time_remaining():
3838
"""Calculate the bake time remaining.
3939
@@ -48,11 +48,11 @@ def bake_time_remaining():
4848
pass
4949

5050

51-
# TODO: Define the 'preparation_time_in_minutes()' function below.
51+
#TODO: Define the 'preparation_time_in_minutes()' function below.
5252
# Remember to add a docstring (you can copy and then alter the one from bake_time_remaining.)
5353
# You might also consider using 'PREPARATION_TIME' here, if you have it defined.
5454

5555

5656

57-
# TODO: define the 'elapsed_time_in_minutes()' function below.
57+
#TODO: define the 'elapsed_time_in_minutes()' function below.
5858
# Remember to add a docstring (you can copy and then alter the one from bake_time_remaining.)

0 commit comments

Comments
 (0)