Fix entity property cache creation arguments (#107221)

This commit is contained in:
Petru Paler
2024-01-05 13:00:59 +01:00
committed by Franck Nijhof
parent 4ade5e46d9
commit c3963b26e7
+1 -1
View File
@@ -292,7 +292,7 @@ class CachedProperties(type):
Pop cached_properties and store it in the namespace.
"""
namespace["_CachedProperties__cached_properties"] = cached_properties or set()
return super().__new__(mcs, name, bases, namespace)
return super().__new__(mcs, name, bases, namespace, **kwargs)
def __init__(
cls,