From 248df1a19b3dd91fe3eee0fd571078f4d1de97d7 Mon Sep 17 00:00:00 2001 From: Tegiminis Date: Sun, 10 Jul 2022 03:25:56 -0700 Subject: [PATCH] docstring fix --- evennia/typeclasses/attributes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/evennia/typeclasses/attributes.py b/evennia/typeclasses/attributes.py index 2e801b5bce..b8c68bb7ac 100644 --- a/evennia/typeclasses/attributes.py +++ b/evennia/typeclasses/attributes.py @@ -264,6 +264,7 @@ class AttributeProperty: Args: value (any): The value about to the stored in this Attribute. + obj (object): Object the attribute is attached to Returns: any: The value to store. @@ -281,6 +282,7 @@ class AttributeProperty: Args: value (any): Value returned from the Attribute. + obj (object): Object the attribute is attached to Returns: any: The value to return to the caller.