aboutsummaryrefslogtreecommitdiff
path: root/gn3/db
diff options
context:
space:
mode:
authorBonfaceKilz2021-06-07 10:09:00 +0300
committerzsloan2021-06-18 22:08:04 +0000
commit49f9d977fc9bd9165392c21f7311b6fe72d2d83a (patch)
tree0428ac15a3ada32c4ee068bbb57aa92987ca1823 /gn3/db
parentd55adb4e549bce790522d1a311bbcd53627c3259 (diff)
downloadgenenetwork3-49f9d977fc9bd9165392c21f7311b6fe72d2d83a.tar.gz
gn3: db: sort imports
Diffstat (limited to 'gn3/db')
-rw-r--r--gn3/db/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gn3/db/__init__.py b/gn3/db/__init__.py
index 824e5b2..ed23c97 100644
--- a/gn3/db/__init__.py
+++ b/gn3/db/__init__.py
@@ -1,7 +1,7 @@
# pylint: disable=[R0902, R0903]
"""Module that exposes common db operations"""
-from typing import Optional, Dict, Any
from dataclasses import asdict, astuple
+from typing import Optional, Dict, Any
from typing_extensions import Protocol
from gn3.db.metadata_audit import MetadataAudit
@@ -11,8 +11,8 @@ from gn3.db.phenotypes import Publication
from gn3.db.metadata_audit import metadata_audit_mapping
from gn3.db.phenotypes import phenotype_mapping
-from gn3.db.phenotypes import publish_x_ref_mapping
from gn3.db.phenotypes import publication_mapping
+from gn3.db.phenotypes import publish_x_ref_mapping
TABLEMAP = {