From 86c0cadd82d6a48b78e6e21a89741e087c997a22 Mon Sep 17 00:00:00 2001 From: Seaswimmer Date: Tue, 13 Aug 2024 16:39:36 -0400 Subject: [PATCH] fix(aurora): don't pass key --- aurora/aurora.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora/aurora.py b/aurora/aurora.py index db1cf89..468c760 100644 --- a/aurora/aurora.py +++ b/aurora/aurora.py @@ -698,7 +698,7 @@ class Aurora(commands.Cog): stripped = t.strip().lower() if stripped == "all": type_list.clear() - type_list.extend((t.key for t in registry_values)) + type_list.extend((t for t in registry_values)) break try: type_list.append(type_registry[stripped])