We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 676fa01 commit b740c85Copy full SHA for b740c85
beetsplug/lastgenre/loaders.py
@@ -36,7 +36,6 @@ class DataFileLoader:
36
37
def __init__(
38
self,
39
- log: Logger,
40
whitelist: Whitelist,
41
c14n_branches: CanonTree,
42
canonicalize: bool,
@@ -45,7 +44,6 @@ def __init__(
45
44
46
Use from_config() classmethod to construct from plugin config.
47
"""
48
- self._log = log
49
self.whitelist = whitelist
50
self.c14n_branches = c14n_branches
51
self.canonicalize = canonicalize
@@ -78,7 +76,7 @@ def from_config(
78
76
config["prefer_specific"].get(bool),
79
77
)
80
81
- return cls(log, whitelist, c14n_branches, canonicalize)
+ return cls(whitelist, c14n_branches, canonicalize)
82
83
@staticmethod
84
def _load_whitelist(
0 commit comments