Skip to content

Commit

Permalink
black.
Browse files Browse the repository at this point in the history
  • Loading branch information
pschmitt committed Mar 3, 2024
1 parent c8b026f commit ca93de9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion obs_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,9 @@ def toggle_item(cl, item, scene=None, is_group=False):
scene = scene or get_current_scene_name(cl)
item_id = get_item_id(cl, item=item, scene=scene, is_group=is_group)
parent = scene if is_group else get_item_parent(cl, item, scene)
enabled = not is_item_enabled(cl, item=item, scene=scene, is_group=is_group)
enabled = not is_item_enabled(
cl, item=item, scene=scene, is_group=is_group
)
return cl.set_scene_item_enabled(parent, item_id, enabled)


Expand Down

0 comments on commit ca93de9

Please sign in to comment.