fix(chart): delete chart marker 'o'

This commit is contained in:
Данил 2025-02-19 14:24:39 +03:00
parent 77aaddb119
commit 3daaedaa2d

View file

@ -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')