From cbb4fdabb213bd3affa8b444d451293b7c4fd358 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <henrik@trineo.org>
Date: Wed, 8 Jan 2020 10:13:05 +0100
Subject: [PATCH] STY: order imports

---
 src/caosdb/connection/connection.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/caosdb/connection/connection.py b/src/caosdb/connection/connection.py
index 701eedb9..a71d2496 100644
--- a/src/caosdb/connection/connection.py
+++ b/src/caosdb/connection/connection.py
@@ -32,14 +32,13 @@ from builtins import str  # pylint: disable=redefined-builtin
 from errno import EPIPE as BrokenPipe
 from socket import error as SocketError
 
-from pkg_resources import resource_filename
-
 from caosdb.configuration import get_config
 from caosdb.exceptions import (AuthorizationException, CaosDBException,
                                ClientErrorException, ConfigurationException,
                                ConnectionException, EntityDoesNotExistError,
                                LoginFailedException, ServerErrorException,
                                URITooLongException)
+from pkg_resources import resource_filename
 
 from .interface import CaosDBHTTPResponse, CaosDBServerConnection
 from .streaminghttp import StreamingHTTPSConnection
-- 
GitLab