From 7ed98e5b88cdd4547de3a4b7e506ba0f73bee2c4 Mon Sep 17 00:00:00 2001 From: Redume Date: Thu, 9 Jan 2025 13:26:57 +0300 Subject: [PATCH] chore: the schedule period has been changed from a week to a month --- functions/create_chart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/create_chart.py b/functions/create_chart.py index 078effb..117dd4d 100644 --- a/functions/create_chart.py +++ b/functions/create_chart.py @@ -7,7 +7,7 @@ config = yaml.safe_load(open('config.yaml')) async def create_chart(from_currency: str, conv_currency: str) -> (dict, None): async with aiohttp.ClientSession(timeout=aiohttp.ClientTimeout(total=3)) as session: - async with session.get(f'{config["kekkai_instance"]}/api/getChart/week/', params={ + async with session.get(f'{config["kekkai_instance"]}/api/getChart/month/', params={ 'from_currency': from_currency, 'conv_currency': conv_currency }) as res: