mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-22 20:23:12 +03:00
fix(chart): delete chart marker 'o'
This commit is contained in:
parent
77aaddb119
commit
3daaedaa2d
1 changed files with 1 additions and 1 deletions
|
@ -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')
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue