fix(cli): parse positional insights days

This commit is contained in:
helix4u 2026-05-12 10:23:43 -06:00 committed by Teknium
parent c23a87bc16
commit a34998ee2f
2 changed files with 46 additions and 0 deletions

3
cli.py
View file

@ -8805,6 +8805,9 @@ class HermesCLI:
elif parts[i] == "--source" and i + 1 < len(parts):
source = parts[i + 1]
i += 2
elif parts[i].isdigit():
days = int(parts[i])
i += 1
else:
i += 1