about summary refs log tree commit diff
path: root/gn3
diff options
context:
space:
mode:
Diffstat (limited to 'gn3')
-rw-r--r--gn3/db_utils.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/gn3/db_utils.py b/gn3/db_utils.py
index a855137..81e930e 100644
--- a/gn3/db_utils.py
+++ b/gn3/db_utils.py
@@ -1,10 +1,11 @@
 """module contains all db related stuff"""
-import contextlib
 import logging
-from typing import Any, Iterator, Protocol
+import contextlib
 from urllib.parse import urlparse
-import MySQLdb as mdb
+from typing import Any, Iterator, Protocol
+
 import xapian
+import MySQLdb as mdb
 
 
 LOGGER = logging.getLogger(__file__)