From 0b66437fab8a0c5372ed8c0619913c925430e225 Mon Sep 17 00:00:00 2001 From: evanjain-dot Date: Mon, 24 Aug 2026 22:26:05 +0530 Subject: [PATCH] Update cli.py --- faircode/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/faircode/cli.py b/faircode/cli.py index 43b1f29..af203cf 100644 --- a/faircode/cli.py +++ b/faircode/cli.py @@ -104,7 +104,7 @@ def main(argv: list[str] | None = None) -> int: help="imbalance-ratio flag threshold (default 3.0)") p.add_argument("--missing-flag", type=float, metavar="F", help="missing-data flag threshold (default 0.05)") - p.add_argument("--min-group-size", type=int, default=100, metavar="N", + p.add_argument("--min-group-size", type=int, metavar="N", help="warn when a subgroup has fewer than N rows (default: 100)") c = sub.add_parser("compare", @@ -126,7 +126,7 @@ def main(argv: list[str] | None = None) -> int: help="imbalance-ratio flag threshold (default 3.0)") c.add_argument("--missing-flag", type=float, metavar="F", help="missing-data flag threshold (default 0.05)") - c.add_argument("--min-group-size", type=int, default=100, metavar="N", + c.add_argument("--min-group-size", type=int, metavar="N", help="warn when a subgroup has fewer than N rows (default: 100)") c.add_argument("--fail-on-drift", action="store_true", help="exit 1 when any dimension shows drift or the overall score drops")