mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 03:54:21 +01:00
MetaSync: rename 'cls' variable to '_cls'
This commit is contained in:
parent
cb13d21ad6
commit
bba8647bac
1 changed files with 2 additions and 2 deletions
|
|
@ -57,8 +57,8 @@ def load_meta_sources():
|
|||
module = import_module(METASYNC_MODULE + '.' + module_name)
|
||||
classes = inspect.getmembers(module, is_meta_source_implementation)
|
||||
|
||||
for cls_name, cls in classes:
|
||||
meta_sources[cls_name.lower()] = cls
|
||||
for cls_name, _cls in classes:
|
||||
meta_sources[cls_name.lower()] = _cls
|
||||
|
||||
return meta_sources
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue