Skip to content

Commit 000157c

Browse files
committed
plugins: remove no-op load_plugins call
without an argument (i.e. the default `names=()`), this was a no-op actual plugin loading is triggered by tests, or by the ui code -> Turns out it's not an actual no-op in our testing code due to patching with attaching some side-effects to load_plugins... This is fixed up in the next commit.
1 parent 371f6a8 commit 000157c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

beets/plugins.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,6 @@ def find_plugins() -> list[BeetsPlugin]:
387387
# See https://github.com/beetbox/beets/pull/3810
388388
return list(_instances.values())
389389

390-
load_plugins()
391390
plugins = []
392391
for cls in _classes:
393392
# Only instantiate each plugin class once.

0 commit comments

Comments
 (0)