1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-08-02 11:31:29 +00:00

implement MR

This commit is contained in:
2023-04-08 18:40:18 -06:00
parent e63dc7f46b
commit 99a3c8633a
2 changed files with 14 additions and 3 deletions

View File

@@ -32,8 +32,8 @@ class Stock(Symbol):
def __init__(self, symbol: str) -> None:
self.symbol = symbol
self.id = symbol
self.name = "$" + symbol
self.tag = "$" + symbol.upper()
self.name = "$" + symbol.upper()
self.tag = "$" + symbol.lower()
class Coin(Symbol):