Skip to content

Commit a1de80b

Browse files
committed
fix: format get_translation calls to satisfy black formatting
- Break long get_translation calls into multiple lines - Ensure all lines comply with 100 character limit
1 parent 6bbf571 commit a1de80b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

bookmark_checker/ui/main_window.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,9 @@ def _export_merged(self) -> None:
471471
f"Failed to export:\n{e}",
472472
)
473473
self.status_label.setText(
474-
get_translation(self.current_language, "error_during_export", "Error during export")
474+
get_translation(
475+
self.current_language, "error_during_export", "Error during export"
476+
)
475477
)
476478
finally:
477479
self.progress_bar.setVisible(False)

0 commit comments

Comments
 (0)