diff --git a/beetsplug/ipfs.py b/beetsplug/ipfs.py index 323e3f93c..7175c1a6a 100644 --- a/beetsplug/ipfs.py +++ b/beetsplug/ipfs.py @@ -44,7 +44,6 @@ class IPFSPlugin(BeetsPlugin): cmd.func = func return [cmd] - def ipfs_add(self, lib): try: album_dir = lib.get().item_dir() @@ -53,7 +52,6 @@ class IPFSPlugin(BeetsPlugin): self._log.info('Adding {0} to ipfs', album_dir) call(["ipfs", "add", "-r", album_dir]) - def ipfs_get(self, lib, hash): call(["ipfs", "get", hash[0]]) self._log.info('Getting {0} from ipfs', hash[0])