From ec39d021fdc6b9d2f94de7b4faad78d05e5519de Mon Sep 17 00:00:00 2001 From: Michael Bisgaard Olesen Date: Tue, 2 Jan 2024 10:59:07 +0100 Subject: [PATCH] catchup-status: Add missing dependency Added dependency on 'requests' to 'requirements.txt'. --- tools/catchup-status/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/catchup-status/requirements.txt b/tools/catchup-status/requirements.txt index 9398bc2..6d31289 100644 --- a/tools/catchup-status/requirements.txt +++ b/tools/catchup-status/requirements.txt @@ -1,2 +1,3 @@ -pydantic~=2.3 httpx~=0.25 +pydantic~=2.3 +requests~=2.31