From bacf1a90e632abf8bec7fd06e646341d468be1c8 Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Thu, 21 Nov 2024 12:26:28 +0100 Subject: [PATCH] Renamed funk --- cursorless-talon/src/check_community_repo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cursorless-talon/src/check_community_repo.py b/cursorless-talon/src/check_community_repo.py index 62c4332539..1af5272336 100644 --- a/cursorless-talon/src/check_community_repo.py +++ b/cursorless-talon/src/check_community_repo.py @@ -13,7 +13,7 @@ ] -def onready(): +def on_ready(): missing_captures = [ capture for capture in required_captures if capture not in registry.captures ] @@ -31,4 +31,4 @@ def onready(): app.notify("Cursorless missing community repository", body=message) -app.register("ready", onready) +app.register("ready", on_ready)