From 4858e3e451b885226641b59571d61e39e2f75c6c Mon Sep 17 00:00:00 2001 From: Thomas Kluyver <thomas@kluyver.me.uk> Date: Wed, 24 Feb 2021 12:29:16 +0000 Subject: [PATCH] isort test_webservice.py --- tests/test_webservice.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/test_webservice.py b/tests/test_webservice.py index 78b94192d..a533c97b6 100644 --- a/tests/test_webservice.py +++ b/tests/test_webservice.py @@ -1,14 +1,13 @@ import sys from pathlib import Path -from testpath import MockCommand from unittest import mock import pytest +from testpath import MockCommand sys.path.insert(0, Path(__file__).parent / 'webservice') -from webservice.webservice import ( - check_files, merge, parse_config, wait_on_transfer, -) +from webservice.webservice import (check_files, merge, parse_config, + wait_on_transfer) def test_check_files(): -- GitLab