From b78c9eb324294af6c27b75efbd1a610bcad420a8 Mon Sep 17 00:00:00 2001 From: Johnny Date: Fri, 5 Aug 2022 19:51:33 +0000 Subject: [PATCH] Removes unused default_factory arg. --- 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 3a3d8c7281..785d849e0f 100644 --- a/evennia/typeclasses/attributes.py +++ b/evennia/typeclasses/attributes.py @@ -176,7 +176,7 @@ class AttributeProperty: attrhandler_name = "attributes" - def __init__(self, default=None, default_factory=None, category=None, strattr=False, lockstring="", autocreate=True): + def __init__(self, default=None, category=None, strattr=False, lockstring="", autocreate=True): """ Initialize an Attribute as a property descriptor.