.format
This commit is contained in:
parent
2812569593
commit
7ab4f756fe
22 changed files with 69 additions and 78 deletions
|
@ -12,5 +12,5 @@ def bitcoin(inp, say=None):
|
|||
'low': data['low']['display_short'],
|
||||
'vol': data['vol']['display_short'],
|
||||
}
|
||||
say("Current: \x0307%(buy)s\x0f - High: \x0307%(high)s\x0f"
|
||||
" - Low: \x0307%(low)s\x0f - Volume: %(vol)s" % ticker)
|
||||
say("Current: \x0307{}\x0f - High: \x0307{}\x0f"
|
||||
" - Low: \x0307{}\x0f - Volume: {}".format(data['buy'],data['high'],data['low'],data['vol']))
|
||||
|
|
Reference in a new issue