From 2c197fb2bfd3356ea5ba9932692168e8f0ffc3d8 Mon Sep 17 00:00:00 2001 From: Christopher Broderick Date: Thu, 26 Oct 2023 21:54:15 +0100 Subject: [PATCH] Fix ordering of imports --- helpdesk/tests/test_get_email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpdesk/tests/test_get_email.py b/helpdesk/tests/test_get_email.py index a401c913..361b438a 100644 --- a/helpdesk/tests/test_get_email.py +++ b/helpdesk/tests/test_get_email.py @@ -18,6 +18,7 @@ from helpdesk.models import FollowUp, FollowUpAttachment, IgnoreEmail, Queue, Ti from helpdesk.tests import utils import itertools import logging +from mock.mock import patch from oauthlib.oauth2 import BackendApplicationClient import os from shutil import rmtree @@ -26,7 +27,6 @@ from tempfile import mkdtemp import time import typing from unittest import mock -from mock.mock import patch THIS_DIR = os.path.dirname(os.path.abspath(__file__))