Skip to content

Commit 0905be8

Browse files
MrButtCodecanihavesomecoffee
authored andcommitted
style: auto-format imports with isort to resolve CI failure
1 parent 60e4393 commit 0905be8

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tests/test_upload/test_controllers.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import base64
2+
from functools import wraps
23
from importlib import reload
34
from io import BytesIO
45
from unittest import mock
5-
from functools import wraps
66

77
from flask import g, url_for
88

@@ -186,7 +186,8 @@ def test_upload_ftp_forbidden_extension(self, mock_shutil, mock_hash, mock_magic
186186

187187
def test_link_id_confirm_invalid(self):
188188
"""Try to confirm link for invalid sample and queue."""
189-
from mod_upload.controllers import link_id_confirm, QueuedSampleNotFoundException
189+
from mod_upload.controllers import (QueuedSampleNotFoundException,
190+
link_id_confirm)
190191

191192
with self.assertRaises(QueuedSampleNotFoundException):
192193
link_id_confirm.__wrapped__(1000, 1000)

0 commit comments

Comments
 (0)