From cecbda97eabf2c5039e496fccb3983c7abe72c71 Mon Sep 17 00:00:00 2001 From: Victor Hall Date: Sat, 12 Nov 2022 14:05:10 -0500 Subject: [PATCH] remove static due to compatibility issues --- scripts/filename_replace.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/filename_replace.py b/scripts/filename_replace.py index 33bee67..bab0f32 100644 --- a/scripts/filename_replace.py +++ b/scripts/filename_replace.py @@ -56,7 +56,6 @@ def get_replace_list(opt): else: return opt.find.split(",") -@staticmethod def get_outfile_name(infile, append): new_filename = f"{os.path.splitext(infile)[0]} {append}{os.path.splitext(infile)[1]}" return new_filename