From f2d298d17c8ead47deefa548ebe80f87c0e40666 Mon Sep 17 00:00:00 2001 From: multikatt Date: Mon, 6 Apr 2015 18:11:38 -0400 Subject: [PATCH] More linting --- beetsplug/ipfs.py | 2 -- 1 file changed, 2 deletions(-) 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])