From 3949b3a4a34f941f2bdecf1fea140668bad986f1 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 14 Oct 2024 12:02:03 +0200 Subject: [PATCH] Fix va_string --- beetsplug/vocadb.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/beetsplug/vocadb.py b/beetsplug/vocadb.py index f73434d..4a46d3a 100644 --- a/beetsplug/vocadb.py +++ b/beetsplug/vocadb.py @@ -43,12 +43,15 @@ def __init__(self) -> None: "va_string": "Various artists", } ) - self.va_string: str = str(self.config["va_string"].get()) @property def data_source(self) -> str: return self.instance.name + @property + def va_string(self) -> str: + return str(self.config["va_string"].get()) + def commands(self) -> list[Subcommand]: cmd: Subcommand = Subcommand( self.instance.subcommand,