Skip to content

Commit 0cda486

Browse files
fix(validator): remove unused import
1 parent 2e091d0 commit 0cda486

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

qgis-app/plugins/validator.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,10 @@
1414

1515
import requests
1616
from django.conf import settings
17-
from django.core.files.uploadedfile import (
18-
InMemoryUploadedFile,
19-
SimpleUploadedFile,
20-
TemporaryUploadedFile,
21-
)
17+
from django.core.files.uploadedfile import SimpleUploadedFile
2218
from django.forms import ValidationError
2319
from django.utils.translation import gettext_lazy as _
2420

25-
from .celery import app
2621

2722
PLUGIN_MAX_UPLOAD_SIZE = getattr(settings, "PLUGIN_MAX_UPLOAD_SIZE", 25000000) # 25 mb
2823
PLUGIN_REQUIRED_METADATA = getattr(

0 commit comments

Comments
 (0)