From 0814678278f2770d6548100c197baf4aa3913901 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Thu, 26 Jun 2025 14:38:53 +0100 Subject: [PATCH] debug should be a hidden option patch bump --- pyproject.toml | 2 +- src/simple_recorder/cli.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9675d47..4963f73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "simple-recorder" -version = "0.1.6" +version = "0.1.7" description = "A simple OBS recorder" authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }] dependencies = [ diff --git a/src/simple_recorder/cli.py b/src/simple_recorder/cli.py index 0bca4ff..2702e8a 100644 --- a/src/simple_recorder/cli.py +++ b/src/simple_recorder/cli.py @@ -51,6 +51,7 @@ class SimpleRecorder(Command): default=False, env="DEBUG", help="Enable debug logging", + hidden=True, ) @override