From 683c8ae58a5bcddf05d7dbbbe08a1c75a1936940 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 15 Apr 2022 17:42:02 +0200 Subject: [PATCH] misc: remove usage of django.utils.six --- tenant_schemas/management/commands/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tenant_schemas/management/commands/__init__.py b/tenant_schemas/management/commands/__init__.py index c3c28ed..9edba91 100644 --- a/tenant_schemas/management/commands/__init__.py +++ b/tenant_schemas/management/commands/__init__.py @@ -4,10 +4,6 @@ from django.core.management import call_command, get_commands, load_command_clas from django.core.management.base import BaseCommand, CommandError from django.db import connection -try: - from django.utils.six.moves import input -except ImportError: - input = raw_input from tenant_schemas.utils import get_tenant_model, get_public_schema_name