From 8deaabf5d8d71c1fac7eecfbdbf0ca076d1ecccd Mon Sep 17 00:00:00 2001 From: n Date: Sat, 1 Feb 2025 17:22:34 -0600 Subject: [PATCH] stub top/bottom quotes --- fetch.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fetch.py b/fetch.py index 4cb11ae..bfaa23f 100644 --- a/fetch.py +++ b/fetch.py @@ -32,4 +32,10 @@ def fetchQuoteData(quoteId): print(f"An error occured while saving the file: {quoteData.status_code}") return "This file probably doesn't exist." +def fetchTopQuotes(instance): + raise NotImplementedError + +def fetchBottomQuotes(instance): + raise NotImplementedError + fetchQuoteData(178)