From bc3df210cc28b0b3d4270c882f662fe39ddc8750 Mon Sep 17 00:00:00 2001 From: Pokey Rule Date: Sun, 23 Jan 2022 16:46:26 +0000 Subject: [PATCH] Black --- src/tutorial.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/tutorial.py b/src/tutorial.py index 473feb6b5e2..afe03fb8e0b 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)