remove static due to compatibility issues

This commit is contained in:
Victor Hall 2022-11-12 14:05:10 -05:00
parent 6b7f5ffcd3
commit cecbda97ea
1 changed files with 0 additions and 1 deletions

View File

@ -56,7 +56,6 @@ def get_replace_list(opt):
else: else:
return opt.find.split(",") return opt.find.split(",")
@staticmethod
def get_outfile_name(infile, append): def get_outfile_name(infile, append):
new_filename = f"{os.path.splitext(infile)[0]} {append}{os.path.splitext(infile)[1]}" new_filename = f"{os.path.splitext(infile)[0]} {append}{os.path.splitext(infile)[1]}"
return new_filename return new_filename