1
0
Fork 0
mirror of synced 2024-09-28 07:21:16 +12:00

corrected syntax error

This commit is contained in:
Phxntxm 2016-10-29 22:17:44 -05:00
parent 55df57fa74
commit 69b20cc55f

View file

@ -72,11 +72,11 @@ class Osu:
# A couple of these aren't the best names to display, so setup a map to change these just a little bit
key_map = {'maxcombo': 'combo',
'count300', '300 hits',
'count100', '100 hits',
'count50', '50 hits',
'countmiss', 'misses',
'perfect', 'got_max_combo'}
'count300': '300 hits',
'count100': '100 hits',
'count50': '50 hits',
'countmiss': 'misses',
'perfect': 'got_max_combo'}
params = {'u': user,
'limit': 100}