diff --git a/mfbatch/commands.py b/mfbatch/commands.py index 3a9b011..17bc178 100644 --- a/mfbatch/commands.py +++ b/mfbatch/commands.py @@ -48,7 +48,6 @@ class CommandEnv: def set_pattern(self, to: str, frm: str, pattern: str, repl: str): self.patterns[to] = (frm, pattern, repl) - def evaluate_patterns(self): for to_key in self.patterns.keys(): from_key, pattern, replacement = self.patterns[to_key] @@ -61,8 +60,6 @@ class CommandEnv: self.metadatums[k] = self.incr[k] % (v + 1) - - class BatchfileParser: """ A batchfile is a text file of lines. Lines either begin with a '#' to denote a diff --git a/pyproject.toml b/pyproject.toml index ec3b096..7a6e7e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mfbatch" -version = "0.1.0" +version = "0.2.0" description = "MetaFlac batch editor" authors = ["Jamie Hardt "] readme = "README.md"