We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bacf1a9 commit feec31cCopy full SHA for feec31c
cursorless-talon/src/check_community_repo.py
@@ -26,9 +26,11 @@ def on_ready():
26
if missing_actions:
27
errors.append(f"Missing actions: {', '.join(missing_actions)}")
28
if errors:
29
- errors.insert(0, "https://github.com/talonhub/community")
30
- message = "\n".join(errors)
31
- app.notify("Cursorless missing community repository", body=message)
+ print("\n".join(errors))
+ app.notify(
+ "Cursorless missing community repository",
32
+ body="https://github.com/talonhub/community",
33
+ )
34
35
36
app.register("ready", on_ready)
0 commit comments