retab? maybe
This commit is contained in:
parent
023ac72be6
commit
a0575a4826
16
bot/coins.py
16
bot/coins.py
|
@ -13,12 +13,12 @@ class Coins(Plugin):
|
|||
|
||||
@staticmethod
|
||||
def __currency(name, prefix=None, suffix=None):
|
||||
def tostr(value):
|
||||
return '{prefix}{value:,.2f}{suffix}'.format(
|
||||
prefix=prefix or '',
|
||||
suffix=suffix or ('' if (prefix or suffix) else (' ' + name)),
|
||||
value=value)
|
||||
return tostr
|
||||
def tostr(value):
|
||||
return '{prefix}{value:,.2f}{suffix}'.format(
|
||||
prefix=prefix or '',
|
||||
suffix=suffix or ('' if (prefix or suffix) else (' ' + name)),
|
||||
value=value)
|
||||
return tostr
|
||||
|
||||
CURRENCIES = {
|
||||
'usd': __currency('usd', prefix='$'),
|
||||
|
@ -35,7 +35,7 @@ class Coins(Plugin):
|
|||
%%btc [<currency>]
|
||||
"""
|
||||
return self.cryptowat_summary('btc', 'coinbase', args)
|
||||
|
||||
|
||||
@command
|
||||
def eth(self, mask: IrcString, target: IrcString, args: Dict):
|
||||
"""Gets the Ethereum values from cryptowatch.
|
||||
|
@ -43,7 +43,7 @@ class Coins(Plugin):
|
|||
%%eth [<currency>]
|
||||
"""
|
||||
return self.cryptowat_summary('eth', 'coinbase', args)
|
||||
|
||||
|
||||
@command
|
||||
def xmr(self, mask: IrcString, target: IrcString, args: Dict):
|
||||
"""Gets the Monero values from cryptowatch.
|
||||
|
|
Loading…
Reference in New Issue
Block a user