Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Feb 14, 2024
1 parent 5c2b813 commit 1c361b0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions game/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,7 @@ def hint_level51():


def title_level52():
return "A bit more Tricky"
return "A bit more tricky"


def description_level52():
Expand Down Expand Up @@ -1815,7 +1815,7 @@ def hint_level83():


def title_level84():
return "Repeat and watch"
return "<b>Repeat</b> and watch"


def description_level84():
Expand All @@ -1832,7 +1832,7 @@ def hint_level84():


def title_level85():
return "Looks easy but use repeat until and see what happens?"
return "Looks easy but use <b>repeat until</b> and see what happens?"


def description_level85():
Expand All @@ -1850,7 +1850,7 @@ def hint_level85():


def title_level86():
return "See what the if blocks looks like in Python"
return "See what the <b>if</b> blocks looks like in Python"


def description_level86():
Expand All @@ -1866,7 +1866,7 @@ def hint_level86():


def title_level87():
return "Don't forget to use else if"
return "Don't forget to use <b>else if</b>"


def description_level87():
Expand Down Expand Up @@ -2459,7 +2459,7 @@ def hint_level109():
description_level116,
hint_level116,
) = (
lambda: "In a while, crocodile!",
lambda: "In a <b>while</b>, crocodile!",
lambda: build_description(
title_level116(),
"This level may look easy, but this time you need to use a While Loop to deliver to the house."
Expand All @@ -2474,7 +2474,7 @@ def hint_level109():
description_level117,
hint_level117,
) = (
lambda: "Wiggle while you work",
lambda: "Wiggle <b>while</b> you work",
lambda: build_description(
title_level117(),
"This time it's a little harder. We've added the directions back in."
Expand Down Expand Up @@ -2887,7 +2887,7 @@ def get_episode_title(episode_id):
10: "Introduction to Python",
11: "Python",
12: "Counted Loops Using While",
13: "Indeterminate While loops - coming soon",
13: "Indeterminate While Loops - coming soon",
14: "Selection in a Loop - coming soon",
15: "For Loops - coming soon",
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def update_episode_name(pk: int, name: str):
episode.save()

update_episode_name(pk=12, name="Counted Loops Using While")
update_episode_name(pk=13, name="Indeterminate While loops - coming soon")
update_episode_name(pk=13, name="Indeterminate While Loops - coming soon")


def undo_rename_episodes(apps: Apps, *args):
Expand All @@ -26,7 +26,7 @@ def update_episode_name(pk: int, name: str):
update_episode_name(pk=13, name="Indeterminate WHILE Loops - coming soon")

Check warning on line 26 in game/migrations/0088_rename_episodes.py

View check run for this annotation

Codecov / codecov/patch

game/migrations/0088_rename_episodes.py#L25-L26

Added lines #L25 - L26 were not covered by tests

class Migration(migrations.Migration):
dependencies = [("game", "0086_loop_levels")]
dependencies = [("game", "0087_workspace_python_view_enabled")]
operations = [
migrations.RunPython(
rename_episodes,
Expand Down

0 comments on commit 1c361b0

Please sign in to comment.