Skip to content

Commit 6bbf571

Browse files
committed
fix: format long line in main_window.py to satisfy black
- Break long line at line 456 to comply with 100 char limit
1 parent 25157a5 commit 6bbf571

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
run: |
3838
ruff check bookmark_checker tests
3939
40-
- name: Format with black
40+
- name: Format check with black
4141
run: |
42-
black bookmark_checker tests
42+
black --check bookmark_checker tests
4343
4444
- name: Type check with mypy
4545
run: |

bookmark_checker/ui/main_window.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,9 @@ def _export_merged(self) -> None:
453453
"exported_to",
454454
"Exported to {path1} and {path2}",
455455
)
456-
self.status_label.setText(exported_to_msg.format(path1=output_path, path2=csv_path))
456+
self.status_label.setText(
457+
exported_to_msg.format(path1=output_path, path2=csv_path)
458+
)
457459
exported_msg = get_translation(
458460
self.current_language, "exported_successfully", "Exported successfully!"
459461
)

0 commit comments

Comments
 (0)