From dfcc5fb5c0fa9d57aaedb20b6f56de6b4f36de67 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.