diff options
author | BonfaceKilz | 2021-06-07 10:09:00 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-06-07 19:58:44 +0300 |
commit | 77107399e2f12a50da02ff970174ff6c682dc8f5 (patch) | |
tree | 8d9c70f0f7d0103a00038f2f6bf3bffa970b4238 /gn3 | |
parent | f524a2673239bf88eb7db9fdbefba7fdd8942738 (diff) | |
download | genenetwork3-77107399e2f12a50da02ff970174ff6c682dc8f5.tar.gz |
gn3: db: sort imports
Diffstat (limited to 'gn3')
-rw-r--r-- | gn3/db/__init__.py | 4 |
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 = { |