We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25157a5 commit 6bbf571Copy full SHA for 6bbf571
2 files changed
.github/workflows/ci.yml
@@ -37,9 +37,9 @@ jobs:
37
run: |
38
ruff check bookmark_checker tests
39
40
- - name: Format with black
+ - name: Format check with black
41
42
- black bookmark_checker tests
+ black --check bookmark_checker tests
43
44
- name: Type check with mypy
45
bookmark_checker/ui/main_window.py
@@ -453,7 +453,9 @@ def _export_merged(self) -> None:
453
"exported_to",
454
"Exported to {path1} and {path2}",
455
)
456
- self.status_label.setText(exported_to_msg.format(path1=output_path, path2=csv_path))
+ self.status_label.setText(
457
+ exported_to_msg.format(path1=output_path, path2=csv_path)
458
+ )
459
exported_msg = get_translation(
460
self.current_language, "exported_successfully", "Exported successfully!"
461
0 commit comments