Skip to content

Commit ff9009f

Browse files
committed
ruff fail fix
1 parent c8f6783 commit ff9009f

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

picard/options.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -534,12 +534,7 @@ def make_default_toolbar_layout():
534534
True,
535535
title=N_("No MusicBrainz requests on restore"),
536536
)
537-
BoolOption(
538-
'setting',
539-
'move_skip_existing_files',
540-
False,
541-
title=N_("Skip moving files if destination already exists")
542-
)
537+
BoolOption('setting', 'move_skip_existing_files', False, title=N_("Skip moving files if destination already exists"))
543538
TextOption(
544539
'setting',
545540
'session_folder_path',

picard/ui/options/renaming.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def test(self):
318318
self.ui.renaming_error.setStyleSheet(self.STYLESHEET_ERROR)
319319
self.ui.renaming_error.setText(e.info)
320320
return
321-
321+
322322
def _overwrite_toggled(self, checked):
323323
if checked:
324324
self.ui.move_skip_existing_files.setChecked(False)
@@ -327,4 +327,5 @@ def _skip_toggled(self, checked):
327327
if checked:
328328
self.ui.move_overwrite_existing_files.setChecked(False)
329329

330+
330331
register_options_page(RenamingOptionsPage)

0 commit comments

Comments
 (0)