Hi folks,
Following a short discussion over at:
https://github.com/machinalis/mypy-django/issues/9,
There is some renewed interest in getting stuck into type hints for
Django. I wanted to drop a mail here to see what the status is.
In preparation for this email, I've been combing the Django
It's tricky to automatically convert the database default value to python,
but I wonder if it would help to put the default value in a python comment
at the end of the field? like:
models.IntegerField(blank=True, null=True) # DB Default value: 1
That way it's more clear in models.py what's going