1
0
Fork 0
mirror of synced 2024-05-27 07:49:42 +12:00

Added a new line between each list comprehension

This commit is contained in:
Phxntxm 2016-07-14 07:39:55 -05:00
parent 37eb3d9a04
commit e50b2fe400

View file

@ -53,7 +53,9 @@ class Overwatch:
fmt = "\n".join("{}: {}".format(i, r) for i, r in g_stats.items() if i in check_g_stats)
if not hero == "":
fmt += "\n"
fmt += "\n".join("{}: {}".format(i, r) for i, r in data['hero_stats'].items())
fmt += "\n"
fmt += "\n".join("{}: {}".format(i, r) for i, r in o_stats.items() if i in check_o_stats)
#fmt = "Kills: {}".format(int(g_stats['eliminations']))