From 224a16ec713937c19524e3146f24e767999ae63b Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Sat, 18 Jan 2025 20:53:45 +0100 Subject: [PATCH] Cmds: Add TODO Rename to App There's an ungreppable TODO remark in Cmds about renaming the class to App, make it greppable. Signed-off-by: Jan Lindemann --- tools/python/jwutils/Cmds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/jwutils/Cmds.py b/tools/python/jwutils/Cmds.py index 87ad359..b48c396 100644 --- a/tools/python/jwutils/Cmds.py +++ b/tools/python/jwutils/Cmds.py @@ -16,7 +16,7 @@ class Cmds: # export def __instantiate(self, cls): r = cls() - r.cmds = self # Rename Cmds class to App, "Cmds" isn't very self-explanatory + r.cmds = self # TODO: Rename Cmds class to App, "Cmds" isn't very self-explanatory r.app = self return r