mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +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]:
|
||||
"""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()
|
||||
wl_filename = self.config["whitelist"].get()
|
||||
|
|
@ -135,8 +135,8 @@ class LastGenrePlugin(plugins.BeetsPlugin):
|
|||
def _load_c14n_tree(self) -> tuple[list[list[str]], bool]:
|
||||
"""Load the canonicalization tree from a YAML file.
|
||||
|
||||
Default tree is used if config is True or empty string, or if
|
||||
prefer_specific is enabled.
|
||||
Default tree is used if config is True, empty string, set to "nothing"
|
||||
or if prefer_specific is enabled.
|
||||
"""
|
||||
c14n_branches: list[list[str]] = []
|
||||
c14n_filename = self.config["canonical"].get()
|
||||
|
|
|
|||
Loading…
Reference in a new issue