trivial: remove support of django-tenant-schemas w/o TenantStorageMixin (#63725)

This commit is contained in:
Frédéric Péters 2022-04-08 15:57:50 +02:00
parent 46b334579f
commit 656d02d970
1 changed files with 1 additions and 8 deletions

View File

@ -6,14 +6,7 @@ from django.core.files import File
from django.core.files.storage import FileSystemStorage
from django.db import connection
from django.utils._os import safe_join
try:
from tenant_schemas.storage import TenantStorageMixin
except ImportError:
class TenantStorageMixin:
pass
from tenant_schemas.storage import TenantStorageMixin
__all__ = ('TenantFileSystemStorage',)