You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the latest version of djangorestframework (3.14.0) NullBooleanField was removed.
but drf-yasg library uses from NullBooleanField
so it will raise the error: AttributeError: module 'rest_framework.serializers' has no attribute 'NullBooleanField'. Did you mean: 'BooleanField'?
how can I solve it ?
The text was updated successfully, but these errors were encountered:
I had the same problem when running lint in the project in this new version. AttributeError: module 'rest_framework.serializers' has no attribute 'NullBooleanField'. Did you mean: 'BooleanField'?
in the latest version of djangorestframework (3.14.0) NullBooleanField was removed.
but drf-yasg library uses from NullBooleanField
so it will raise the error:
AttributeError: module 'rest_framework.serializers' has no attribute 'NullBooleanField'. Did you mean: 'BooleanField'?
how can I solve it ?
The text was updated successfully, but these errors were encountered: