File tree 1 file changed +6
-6
lines changed
exercises/concept/guidos-gorgeous-lasagna/.meta
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11
11
def bake_time_remaining (elapsed_bake_time ):
12
12
"""Calculate the bake time remaining.
13
13
14
- :param elapsed_bake_time: int baking time already elapsed
15
- :return: int remaining bake time (in minutes) derived from 'EXPECTED_BAKE_TIME'
14
+ :param elapsed_bake_time: int baking time already elapsed
15
+ :return: int remaining bake time (in minutes) derived from 'EXPECTED_BAKE_TIME'
16
16
17
- Function that takes the actual minutes the lasagna has been in the oven as
18
- an argument and returns how many minutes the lasagna still needs to bake
19
- based on the `EXPECTED_BAKE_TIME`.
20
- """
17
+ Function that takes the actual minutes the lasagna has been in the oven as
18
+ an argument and returns how many minutes the lasagna still needs to bake
19
+ based on the `EXPECTED_BAKE_TIME`.
20
+ """
21
21
22
22
return EXPECTED_BAKE_TIME - elapsed_bake_time
23
23
You can’t perform that action at this time.
0 commit comments