From 5355d29a31a1e8b991c6107b17c2439724ec7636 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 10 Jan 2026 14:04:27 +0000 Subject: [PATCH] keep it consistent --- obsws_cli/sceneitem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obsws_cli/sceneitem.py b/obsws_cli/sceneitem.py index 1cffbda..29a2db7 100644 --- a/obsws_cli/sceneitem.py +++ b/obsws_cli/sceneitem.py @@ -30,7 +30,7 @@ def list_( uuid: Annotated[bool, typer.Option(help='Show UUIDs of scene items')] = False, ): """List all items in a scene.""" - if not scene_name: + if scene_name is None: scene_name = ctx.obj['obsws'].get_current_program_scene().scene_name resp = ctx.obj['obsws'].get_scene_item_list(scene_name)