Seth Yastrov
Seth Yastrov
Not sure if it's possible, but it would be useful if you could get a list of e.g. `ValueError`s, rather than just the first one that failed when there are...
# Bug report ## What's wrong ``` from django.db import models class MyModel(models.Model): my_field = models.DecimalField(decimal_places=2, max_digits=10, default=0) result = MyModel.objects.values_list('my_field', flat=True).get(id=1) reveal_type(result) # Revealed type is: Optional[Decimal] ``` ##...
I'm sorry for abusing the issue tracker, but I'm not sure how else to notify someone who could perform a code-review (I did try pinging/mentions). And no worries of course...
When using `django-types`, you need to add a lot of boilerplate in order to fill in the attributes that Django would normally add to your models. I thought I would...