From 61a5e01b50d93ec72448e4672804c7d457a23e31 Mon Sep 17 00:00:00 2001 From: Sebastian Mohr Date: Thu, 2 Oct 2025 13:34:06 +0200 Subject: [PATCH] Removed __all__ as they are not needed here anymore. --- beetsplug/bpsync.py | 3 --- beetsplug/chroma.py | 3 --- 2 files changed, 6 deletions(-) diff --git a/beetsplug/bpsync.py b/beetsplug/bpsync.py index 0712da1f3..9ae6d47d5 100644 --- a/beetsplug/bpsync.py +++ b/beetsplug/bpsync.py @@ -179,6 +179,3 @@ class BPSyncPlugin(BeetsPlugin): if move and lib.directory in util.ancestry(items[0].path): self._log.debug("moving album {}", album) album.move() - - -__all__ = ["BPSyncPlugin"] diff --git a/beetsplug/chroma.py b/beetsplug/chroma.py index 1243cdf45..192310fb8 100644 --- a/beetsplug/chroma.py +++ b/beetsplug/chroma.py @@ -363,6 +363,3 @@ def fingerprint_item(log, item, write=False): return item.acoustid_fingerprint except acoustid.FingerprintGenerationError as exc: log.info("fingerprint generation failed: {}", exc) - - -__all__ = ["AcoustidPlugin"]