From 244e0b54deffd28ed53496263d16345dfd472399 Mon Sep 17 00:00:00 2001 From: Nils Hamerlinck Date: Fri, 13 Mar 2026 15:42:27 +0700 Subject: [PATCH 1/2] fix(doctor): add help description to doctor command Co-Authored-By: Claude Opus 4.6 (1M context) --- trobz_local/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/trobz_local/main.py b/trobz_local/main.py index bcd2c5b..515f7f7 100644 --- a/trobz_local/main.py +++ b/trobz_local/main.py @@ -572,6 +572,7 @@ def ensure_db_user(ctx: typer.Context): @app.command() def doctor(): + """Check the health of your local development environment.""" code_root = get_code_root() groups = run_doctor(code_root) From 2986e131f11e616b8a7cd0fd69762af466bd0986 Mon Sep 17 00:00:00 2001 From: Nils Hamerlinck Date: Fri, 13 Mar 2026 15:44:28 +0700 Subject: [PATCH 2/2] fix: add help description to init command Co-Authored-By: Claude Opus 4.6 (1M context) --- trobz_local/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/trobz_local/main.py b/trobz_local/main.py index 515f7f7..4dbe746 100644 --- a/trobz_local/main.py +++ b/trobz_local/main.py @@ -68,6 +68,7 @@ def main( @app.command() def init(ctx: typer.Context): + """Create the directory structure for local Odoo development.""" _run_init(ctx)