Remove critical functions

Gonna reimplement later
This commit is contained in:
Salt 2020-03-03 19:52:45 -06:00
parent c6ce1b36f8
commit f3485fe42d

View File

@ -49,7 +49,7 @@ class BadWitch:
self.argparser.add_argument('-v', '--verbose', action='store_true', self.argparser.add_argument('-v', '--verbose', action='store_true',
help='Show more status messages') help='Show more status messages')
self.argparser.add_argument('action', metavar='action', nargs='?', 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') help='Action to perform on the library')
# Set up appdirs # Set up appdirs
self.dirs = AppDirs('badwitch', 'rehashedsalt') self.dirs = AppDirs('badwitch', 'rehashedsalt')
@ -63,10 +63,6 @@ class BadWitch:
# Perform action # Perform action
if self.args.action == 'download': if self.args.action == 'download':
return return
elif self.args.action == 'add':
return
elif self.args.action == 'remove':
return
elif self.args.action == 'list': elif self.args.action == 'list':
lib.load() lib.load()
for album, albumcontent in lib.albums.items(): for album, albumcontent in lib.albums.items():