Hi, I'm working with the new datastore plus API, and I'm getting a stack trace when I create a model with a repeated KeyProperty. Is this expected?
The error the trace ends with is:
TypeError: argument of type 'MetaModel' is not iterable
I'm specifying the property like:
class MyModel(model.Model):
bars = model.KeyProperty(Bar, repeated=True)