From 3daaedaa2d8842cc4891eaeb8dc70f7391942c45 Mon Sep 17 00:00:00 2001 From: Redume Date: Wed, 19 Feb 2025 14:24:39 +0300 Subject: [PATCH] fix(chart): delete chart marker 'o' --- chart/function/create_chart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chart/function/create_chart.py b/chart/function/create_chart.py index ef866fa..983da04 100644 --- a/chart/function/create_chart.py +++ b/chart/function/create_chart.py @@ -90,7 +90,7 @@ async def create_chart( if rate[0] < rate[-1]: plt.plot(newx_2, newy_2, color='green') elif rate[0] > rate[-1]: - plt.plot(newx_2, newy_2, color='red', marker='o') + plt.plot(newx_2, newy_2, color='red') else: plt.plot(newx_2, newy_2, color='grey')