From 296c966ae6b574294ad96691aca235dcfa3cc4f5 Mon Sep 17 00:00:00 2001 From: Tegiminis Date: Sun, 10 Jul 2022 03:48:54 -0700 Subject: [PATCH] remove unused argument --- evennia/typeclasses/attributes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/typeclasses/attributes.py b/evennia/typeclasses/attributes.py index b8c68bb7ac..f714753b99 100644 --- a/evennia/typeclasses/attributes.py +++ b/evennia/typeclasses/attributes.py @@ -211,7 +211,7 @@ class AttributeProperty: """ self._key = name - def __get__(self, instance, owner): + def __get__(self, instance): """ Called when the attrkey is retrieved from the instance.