Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
bmagyar committed Jun 20, 2023
1 parent 96b099b commit 61d9648
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,11 @@ def main(self, *, args):
else:
plugin_name = f"{bcolors.WARNING}plugin name missing!{bcolors.ENDC}"

print(f"\tplugin name: {plugin_name}\n"
f"\tstate: id={component.state.id} label={component.state.label}\n"
f"\tcommand interfaces")
print(
f"\tplugin name: {plugin_name}\n"
f"\tstate: id={component.state.id} label={component.state.label}\n"
f"\tcommand interfaces"
)
for cmd_interface in component.command_interfaces:
if cmd_interface.is_available:
available_str = f"{bcolors.OKBLUE}[available]{bcolors.ENDC}"
Expand Down

0 comments on commit 61d9648

Please sign in to comment.