Skip to content

Commit

Permalink
Fix va_string
Browse files Browse the repository at this point in the history
  • Loading branch information
amogus07 committed Oct 14, 2024
1 parent 572c0fb commit 3949b3a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion beetsplug/vocadb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 3949b3a

Please sign in to comment.