Skip to content

Commit

Permalink
Black
Browse files Browse the repository at this point in the history
  • Loading branch information
pschmitt committed Dec 22, 2023
1 parent 01bb9d5 commit fc3d1c5
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 @@ -364,7 +364,9 @@ def main():
for item in data:
item_id = str(item.get("sceneItemId"))
name = item.get("sourceName")
group = item.get("parentGroup", {}).get("sourceName", "N/A")
group = item.get("parentGroup", {}).get(
"sourceName", "N/A"
)
enabled = "✅" if item.get("sceneItemEnabled") else "❌"
table.add_row(item_id, group, name, enabled)
console.print(table)
Expand Down

0 comments on commit fc3d1c5

Please sign in to comment.