fix danbooru TODO error

This commit is contained in:
Luna 2024-08-30 23:58:17 -03:00
parent 2d05d24897
commit 3b9df436f1

View file

@ -94,9 +94,9 @@ def main():
if booru == "gelbooru":
booru_client = Gelbooru()
elif booru == "gelbooru":
booru_client = Danbooru()
elif booru == "danbooru":
raise NotImplementedError() # TODO
booru_client = Danbooru()
else:
log.error("booru must be one of {gelbooru, danbooru}")
return 1