From 3b9df436f1e98bfe193498dc3f148086a6af5376 Mon Sep 17 00:00:00 2001 From: Luna Date: Fri, 30 Aug 2024 23:58:17 -0300 Subject: [PATCH] fix danbooru TODO error --- timeliner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/timeliner.py b/timeliner.py index 8cfdbee..5ff2a9f 100755 --- a/timeliner.py +++ b/timeliner.py @@ -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