chore: Replace deprecated django.contrib.postgres.forms.JSONField with django.forms.JSONField

Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2709>
This commit is contained in:
Georg Krause 2024-01-30 13:17:54 +01:00 committed by Petitminion
parent 4e7eaa1010
commit f3997e76f8
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import json
from django import forms
from django.conf import settings
from django.contrib.postgres.forms import JSONField
from django.forms import JSONField
from dynamic_preferences import serializers, types
from dynamic_preferences.registries import global_preferences_registry