Removes unused default_factory arg.

This commit is contained in:
Johnny 2022-08-05 19:51:33 +00:00
parent 470c2ebef7
commit b78c9eb324

View file

@ -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.