jw-pkg/src
Jan Lindemann e5e0cf9930 jw.pkg.lib.Cmd._run(): Call parent._run()
jw.pkg.lib.Cmd._run() is abstract, but it's nice to give it a default
implementation which calls self.parent._run() in case parent is also
a command class. That allows for some default processing in _run()
for each node up the parent chain.

The children / derived classes just need to make sure all classes in
the hierarchy do:

    async def _run(self, args):
      return await super()._run(args)
      ... add main command logic here ..

Signed-off-by: Jan Lindemann <jan@janware.com>
2026-02-20 19:30:22 +01:00
..
python jw.pkg.lib.Cmd._run(): Call parent._run() 2026-02-20 19:30:22 +01:00
Makefile projects.py: Move bulk of code into module 2025-11-15 11:08:52 +01:00