From 86433e841b6af1d73c72f71230cb5087a5945217 Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Tue, 8 Nov 2022 22:06:36 +0100 Subject: [PATCH] Fixed typo #46 --- kdb-bot/src/modules/stats/command/stats_group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdb-bot/src/modules/stats/command/stats_group.py b/kdb-bot/src/modules/stats/command/stats_group.py index bb46b0a06f..b105120955 100644 --- a/kdb-bot/src/modules/stats/command/stats_group.py +++ b/kdb-bot/src/modules/stats/command/stats_group.py @@ -84,7 +84,7 @@ class StatsGroup(DiscordCommandABC): statistics = '' descriptions = '' - for statistic in self._stats: + for statistic in stats: statistics += f'\n{statistic["Name"]}' descriptions += f'\n{statistic["Description"]}'