Initial isort configuration

Will fail build if imports are not sorted correctly
This commit is contained in:
Martin Whitehouse
2022-07-22 03:26:41 +02:00
parent 12bb68d5ee
commit 25542f929e
57 changed files with 330 additions and 280 deletions

View File

@ -8,12 +8,11 @@ scripts/create_escalation_exclusion.py - Easy way to routinely add particular
days to the list of days on which no
escalation should take place.
"""
from datetime import date, timedelta
from django.core.management.base import BaseCommand, CommandError
from helpdesk.models import EscalationExclusion, Queue
from datetime import timedelta, date
import getopt
from helpdesk.models import EscalationExclusion, Queue
from optparse import make_option
import sys