From e27751a9269497e535abae37b3373cdb9ddb0842 Mon Sep 17 00:00:00 2001 From: Tegiminis Date: Sun, 10 Jul 2022 03:55:52 -0700 Subject: [PATCH] Revert "remove unused argument" This reverts commit dfcc5fb5c0fa9d57aaedb20b6f56de6b4f36de67. --- 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 f714753b99..b8c68bb7ac 100644 --- a/evennia/typeclasses/attributes.py +++ b/evennia/typeclasses/attributes.py @@ -211,7 +211,7 @@ class AttributeProperty: """ self._key = name - def __get__(self, instance): + def __get__(self, instance, owner): """ Called when the attrkey is retrieved from the instance.