diff options
author | BonfaceKilz | 2021-06-03 21:50:52 +0300 |
---|---|---|
committer | zsloan | 2021-06-18 22:08:04 +0000 |
commit | d55adb4e549bce790522d1a311bbcd53627c3259 (patch) | |
tree | 737cf1b4c711afba3ae062785dee30aa4492d4a6 /gn3 | |
parent | 8210c46fde908b8815ab97f2f91039f87365369b (diff) | |
download | genenetwork3-d55adb4e549bce790522d1a311bbcd53627c3259.tar.gz |
gn3: db: Remove "escape_string" from imports
We use prepared statements, so no need to have this.
Diffstat (limited to 'gn3')
-rw-r--r-- | gn3/db/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gn3/db/__init__.py b/gn3/db/__init__.py index fea43ec..824e5b2 100644 --- a/gn3/db/__init__.py +++ b/gn3/db/__init__.py @@ -3,7 +3,6 @@ from typing import Optional, Dict, Any from dataclasses import asdict, astuple from typing_extensions import Protocol -from MySQLdb import escape_string from gn3.db.metadata_audit import MetadataAudit from gn3.db.phenotypes import Phenotype |