typeddjango / djangorestframework-stubs

PEP-484 stubs for django-rest-framework
MIT License
453 stars 117 forks source link

Allow `None` for `ListField.min/max_length` #601

Closed Viicos closed 6 months ago

Viicos commented 6 months ago

At runtime, this defaults to None:

self.max_length = kwargs.pop('max_length', None)
self.min_length = kwargs.pop('min_length', None)