diff options
author | BonfaceKilz | 2021-07-29 22:15:36 +0300 |
---|---|---|
committer | GitHub | 2021-07-29 22:15:36 +0300 |
commit | 00278bc237c90b4ac276171a32bbe57e056644b6 (patch) | |
tree | f6ff2fd64cd288d75af4900cb7b2cd984f598ce0 /gn3/db/__init__.py | |
parent | 2ccbf1844afe352e23af7ff958ec2b0694cd87ea (diff) | |
parent | 8d83ba7298c33e54ab204effe2a4241ce848add9 (diff) | |
download | genenetwork3-00278bc237c90b4ac276171a32bbe57e056644b6.tar.gz |
Merge pull request #30 from genenetwork/Feature/Update-db-from-csv-data
Feature/update db from csv data
Diffstat (limited to 'gn3/db/__init__.py')
-rw-r--r-- | gn3/db/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/db/__init__.py b/gn3/db/__init__.py index 5ab9f3c..149a344 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 dataclasses import asdict, astuple -from typing import Any, Dict, List, Optional, Generator, Union +from typing import Any, Dict, List, Optional, Generator, Tuple, Union from typing_extensions import Protocol from gn3.db.metadata_audit import MetadataAudit |