Skip to content

Commit

Permalink
Black
Browse files Browse the repository at this point in the history
  • Loading branch information
pokey committed Jan 27, 2022
1 parent 87f3c06 commit bc3df21
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,17 @@ def get_basic_coding_walkthrough():
"/Users/pokey/src/cursorless-vscode/src/test/suite/fixtures/recorded/tutorial/unit-2-basic-coding/script.json"
) as f:
script = json.load(f)

return [actions.user.hud_create_walkthrough_step(**process_tutorial_step(step)) for step in script]

return [
actions.user.hud_create_walkthrough_step(**process_tutorial_step(step))
for step in script
]


def on_ready():
actions.user.hud_add_lazy_walkthrough("Cursorless basic coding", get_basic_coding_walkthrough)
actions.user.hud_add_lazy_walkthrough(
"Cursorless basic coding", get_basic_coding_walkthrough
)


app.register("ready", on_ready)

0 comments on commit bc3df21

Please sign in to comment.