From 549f49da31b970c056fcbdc66c31e347300317e9 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sun, 25 May 2025 08:28:32 -0700 Subject: [PATCH] autopep --- mfbatch/__main__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mfbatch/__main__.py b/mfbatch/__main__.py index e719da8..2bb3c0b 100644 --- a/mfbatch/__main__.py +++ b/mfbatch/__main__.py @@ -29,7 +29,7 @@ def execute_batch_list(batch_list_path: str, dry_run: bool, interactive: bool): parser.eval(line, line_no, interactive) -def create_batch_list(flac_files: List[str], command_file: str, +def create_batch_list(flac_files: List[str], command_file: str, sort_mode='path'): """ Read all FLAC files in the cwd and create a batchfile that re-creates all @@ -151,7 +151,8 @@ def main(): else: flac_files = glob('./**/*.flac', recursive=True) - create_batch_list(flac_files, options.batchfile, sort_mode=options.sort) + create_batch_list(flac_files, options.batchfile, + sort_mode=options.sort) if options.edit: mode_given = True