diff --git a/cursorless-talon/src/number_small.py b/cursorless-talon/src/number_small.py deleted file mode 100644 index e043682c2f..0000000000 --- a/cursorless-talon/src/number_small.py +++ /dev/null @@ -1,20 +0,0 @@ -""" -DEPRECATED @ 2024-12-21 -This file allows us to use a custom `number_small` capture. See #1021 for more info. -""" - -from talon import Module, app, registry - -mod = Module() - -mod.tag("cursorless_custom_number_small", "DEPRECATED!") - - -def on_ready(): - if "user.cursorless_custom_number_small" in registry.tags: - print( - "WARNING tag: 'user.cursorless_custom_number_small' is deprecated and should not be used anymore, as Cursorless now uses community number_small" - ) - - -app.register("ready", on_ready)