diff --git a/src/tutorial.py b/src/tutorial.py index 473feb6b5e..afe03fb8e0 100644 --- a/src/tutorial.py +++ b/src/tutorial.py @@ -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)