diff options
| author | BonfaceKilz | 2021-06-03 21:50:52 +0300 | 
|---|---|---|
| committer | BonfaceKilz | 2021-06-03 21:58:31 +0300 | 
| commit | f524a2673239bf88eb7db9fdbefba7fdd8942738 (patch) | |
| tree | cebd77c6fed2ee3372fff4a48b63f89c421ce849 | |
| parent | bef67489908e28c170e28cde637627c17a0d1db7 (diff) | |
| download | genenetwork3-f524a2673239bf88eb7db9fdbefba7fdd8942738.tar.gz | |
gn3: db: Remove "escape_string" from imports
We use prepared statements, so no need to have this.
| -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 | 
