From 1d233405bfc227632394f224c9bc98f8de6c94aa Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Tue, 8 Jul 2025 15:47:32 +1200 Subject: [PATCH] Warn on --livecsv in --status* block --- sbysrc/sby.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sbysrc/sby.py b/sbysrc/sby.py index cdac898..827b7cd 100644 --- a/sbysrc/sby.py +++ b/sbysrc/sby.py @@ -100,6 +100,10 @@ if status_show or status_reset or status_show_csv: status_db.print_status_summary_csv() status_db.db.close() + + if status_live_csv: + print(f"WARNING: --livecsv flag found but not used.") + sys.exit(0)