From f2ca6d65ed98ad072b308d59947aca4592c0a660 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Sat, 3 Apr 2021 16:23:10 -0700 Subject: [PATCH] Making flows return an embed --- app/river_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/river_stats.py b/app/river_stats.py index e7e279e8..eaebd1e6 100644 --- a/app/river_stats.py +++ b/app/river_stats.py @@ -34,7 +34,7 @@ def get_stats(): x.join() final_string = '' - embed = discord.Embed(description="Flows", color=0x428bca, type="rich") + embed = discord.Embed(description="Flows :canoe:", color=0x428bca, type="rich") embed.set_author(name="River stats") for key, value in results.items(): embed.add_field(name=key, value=value, inline=False)