diff options
author | Munyoki Kilyungi | 2022-10-11 17:37:20 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-11-02 17:36:22 +0300 |
commit | 2e85b5c7c4be181182f263fcb644abd173be83c1 (patch) | |
tree | bd34c19c3d41e6435495fa4da6dd56d886bcb96d /mypy.ini | |
parent | 29977a9c52e95ac58cbc402908e26998788f0820 (diff) | |
download | genenetwork3-2e85b5c7c4be181182f263fcb644abd173be83c1.tar.gz |
Fix pylint and mypy errors
* gn3/db/sample_data.py (get_trait_csv_sample_data): Pass __query
directly to cursor.execute. Rename value to _value in for loop to
make mypy pass.
* gn3/db_utils.py (Connection): Add class docstring.
(Connection.cursor): Add docstring.
* mypy.ini: Add an entry for xapian.
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -45,3 +45,6 @@ ignore_missing_imports = True [mypy-scripts.argparse_actions.*] ignore_missing_imports = True + +[mypy-xapian.*] +ignore_missing_imports = True |