Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 17, 2023
1 parent ccbc10f commit 881a869
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/menu_bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def __init__(self, autosplit: AutoSplit):
# self.capture_method_combobox.setView(list_view)

self.capture_method_combobox.addItems(
[f"- {method.name} ({method.short_description})" for method in capture_method_values]
[f"- {method.name} ({method.short_description})" for method in capture_method_values],
)
self.capture_method_combobox.setToolTip(
"\n\n".join([f"{method.name} :\n{method.description}" for method in capture_method_values]),
Expand Down Expand Up @@ -244,7 +244,7 @@ def __set_all_capture_devices(self):
+ (f" [{device.backend}]" if device.backend else "")
+ (" (occupied)" if device.occupied else "")
for device in self.__video_capture_devices
]
],
)
self.__enable_capture_device_if_its_selected_method()
else:
Expand Down

0 comments on commit 881a869

Please sign in to comment.