From ac1071caafd0dfd0bf83d1b194c27dd9db6dde12 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Wed, 23 Apr 2025 13:40:58 +0100 Subject: [PATCH] fix type annotation --- 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 70002fd..214e882 100644 --- a/obsws_cli/sceneitem.py +++ b/obsws_cli/sceneitem.py @@ -57,7 +57,7 @@ def _validate_scene_name_and_item_name( def _get_scene_name_and_item_id( - ctx: typer.Context, scene_name: str, item_name: str, parent: bool = False + ctx: typer.Context, scene_name: str, item_name: str, parent: str ): if parent: resp = ctx.obj['obsws'].get_group_scene_item_list(parent)