We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27d2367 commit a631d67Copy full SHA for a631d67
qgis-app/plugins/validator.py
@@ -14,15 +14,10 @@
14
15
import requests
16
from django.conf import settings
17
-from django.core.files.uploadedfile import (
18
- InMemoryUploadedFile,
19
- SimpleUploadedFile,
20
- TemporaryUploadedFile,
21
-)
+from django.core.files.uploadedfile import SimpleUploadedFile
22
from django.forms import ValidationError
23
from django.utils.translation import gettext_lazy as _
24
25
-from .celery import app
26
27
PLUGIN_MAX_UPLOAD_SIZE = getattr(settings, "PLUGIN_MAX_UPLOAD_SIZE", 25000000) # 25 mb
28
PLUGIN_REQUIRED_METADATA = getattr(
0 commit comments