Jaymon / prom

A PostgreSQL or SQLite orm for Python
MIT License
22 stars 4 forks source link

query.Iterator has a bad __repr__ #137

Closed Jaymon closed 3 years ago

Jaymon commented 3 years ago
it = SomeOrm.query.get()
print(it) # []

It would be worth overriding the query.Iterator.__repr__ method to have something like:

[ ... lazy loaded SomeOrm instances ... ]