Skip to content

Commit 1a64801

Browse files
Clean up
1 parent ea4f79a commit 1a64801

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

cursorless-everywhere-talon/cursorless_everywhere_talon_browser.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
@ctx.action_class("user")
2121
class Actions:
2222
def cursorless_everywhere_get_editor_state() -> EditorState:
23-
command = {"type": "getActiveEditor"}
23+
command = {
24+
"type": "getActiveEditor",
25+
}
2426
res = rpc_get(command)
2527
if use_fallback(res):
2628
return actions.next()
@@ -40,7 +42,10 @@ def cursorless_everywhere_set_selections(
4042
def cursorless_everywhere_edit_text(
4143
edit: EditorEdit, # pyright: ignore [reportGeneralTypeIssues]
4244
):
43-
command = {"type": "setText", "text": edit["text"]}
45+
command = {
46+
"type": "setText",
47+
"text": edit["text"],
48+
}
4449
res = rpc_get(command)
4550
if use_fallback(res):
4651
actions.next(edit)

0 commit comments

Comments
 (0)