From e50b2fe4000a83f8cdff51882ccf56ff9facfdc6 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Thu, 14 Jul 2016 07:39:55 -0500 Subject: [PATCH] Added a new line between each list comprehension --- cogs/overwatch.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cogs/overwatch.py b/cogs/overwatch.py index 690b2b1..910fdf0 100644 --- a/cogs/overwatch.py +++ b/cogs/overwatch.py @@ -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']))