From 10cda0783a212b950a169506b89c29f6f5572921 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20G=C3=B6tz?= Date: Thu, 16 May 2019 00:57:33 +0200 Subject: [PATCH] Removed unused imports --- src/account_helper/management/commands/deletable.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/account_helper/management/commands/deletable.py b/src/account_helper/management/commands/deletable.py index 36497c0..e0788a6 100644 --- a/src/account_helper/management/commands/deletable.py +++ b/src/account_helper/management/commands/deletable.py @@ -1,11 +1,12 @@ -from django.core.exceptions import ObjectDoesNotExist -from django.core.management.base import BaseCommand, CommandError -from account_manager.models import LdapGroup, LdapUser -from account_helper.models import DeletedUser -from django.utils import timezone -from django.core import serializers import json +from django.core.exceptions import ObjectDoesNotExist +from django.core.management.base import BaseCommand +from django.utils import timezone + +from account_helper.models import DeletedUser +from account_manager.models import LdapGroup, LdapUser + class Command(BaseCommand): help = 'Get and delete the deleted marked users'