From c5cdb16a8a863f7d55b822f2cbb83f0a58ebd65b Mon Sep 17 00:00:00 2001 From: Jake Pullen Date: Sat, 10 Aug 2024 17:13:51 +0100 Subject: [PATCH] JP is stupid --- pipeline/ingest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/ingest.py b/pipeline/ingest.py index 416a55f..3827df4 100644 --- a/pipeline/ingest.py +++ b/pipeline/ingest.py @@ -30,7 +30,7 @@ class Ingest: """ Load additional configuration values from the config file. """ - with open('config.config.yaml', 'r') as f: + with open('config/config.yaml', 'r') as f: config = yaml.safe_load(f) self.MAX_RETRIES = config['REQUESTS_MAX_RETRIES'] self.RETRY_DELAY = config['REQUESTS_RETRY_DELAY']