From f3485fe42d1c4e91f216417e1418bd3152e1c8b5 Mon Sep 17 00:00:00 2001 From: Salt Date: Tue, 3 Mar 2020 19:52:45 -0600 Subject: [PATCH] Remove critical functions Gonna reimplement later --- badwitch.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/badwitch.py b/badwitch.py index 5a7677f..c94ebfd 100755 --- a/badwitch.py +++ b/badwitch.py @@ -49,7 +49,7 @@ class BadWitch: self.argparser.add_argument('-v', '--verbose', action='store_true', help='Show more status messages') self.argparser.add_argument('action', metavar='action', nargs='?', - choices=['download', 'add', 'remove', 'list', 'test'], + choices=['download', 'list', 'test'], help='Action to perform on the library') # Set up appdirs self.dirs = AppDirs('badwitch', 'rehashedsalt') @@ -63,10 +63,6 @@ class BadWitch: # Perform action if self.args.action == 'download': return - elif self.args.action == 'add': - return - elif self.args.action == 'remove': - return elif self.args.action == 'list': lib.load() for album, albumcontent in lib.albums.items():