mirror of
https://github.com/beetbox/beets.git
synced 2025-12-07 00:53:08 +01:00
lastgerne: Update wl/tree load methods docstrings
This commit is contained in:
parent
d2caed3971
commit
7a5cfa8f46
1 changed files with 3 additions and 3 deletions
|
|
@ -117,7 +117,7 @@ class LastGenrePlugin(plugins.BeetsPlugin):
|
||||||
def _load_whitelist(self) -> set[str]:
|
def _load_whitelist(self) -> set[str]:
|
||||||
"""Load the whitelist from a text file.
|
"""Load the whitelist from a text file.
|
||||||
|
|
||||||
Default whitelist is used if config is True or empty string.
|
Default whitelist is used if config is True, empty string or set to "nothing".
|
||||||
"""
|
"""
|
||||||
whitelist = set()
|
whitelist = set()
|
||||||
wl_filename = self.config["whitelist"].get()
|
wl_filename = self.config["whitelist"].get()
|
||||||
|
|
@ -135,8 +135,8 @@ class LastGenrePlugin(plugins.BeetsPlugin):
|
||||||
def _load_c14n_tree(self) -> tuple[list[list[str]], bool]:
|
def _load_c14n_tree(self) -> tuple[list[list[str]], bool]:
|
||||||
"""Load the canonicalization tree from a YAML file.
|
"""Load the canonicalization tree from a YAML file.
|
||||||
|
|
||||||
Default tree is used if config is True or empty string, or if
|
Default tree is used if config is True, empty string, set to "nothing"
|
||||||
prefer_specific is enabled.
|
or if prefer_specific is enabled.
|
||||||
"""
|
"""
|
||||||
c14n_branches: list[list[str]] = []
|
c14n_branches: list[list[str]] = []
|
||||||
c14n_filename = self.config["canonical"].get()
|
c14n_filename = self.config["canonical"].get()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue