diff options
| author | Frederick Muriuki Muriithi | 2022-02-21 16:23:06 +0300 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2022-02-21 16:23:06 +0300 |
| commit | a35fce27875d9db80dce1976b6f8ee8c00ecfe0a (patch) | |
| tree | 8e8f815a6e3d37348bdb8f253f5ec53f72dc2dbc /tests/unit/test_db_utils.py | |
| parent | c84b07b8c5ac0a42c0fab929c75823b30b548191 (diff) | |
| download | genenetwork3-a35fce27875d9db80dce1976b6f8ee8c00ecfe0a.tar.gz | |
Fix a myriad of linter issues
* Use `with` in place of plain `open` * Use f-strings in place of `str.format()` * Remove string interpolation from queries - provide data as query parameters * other minor fixes
Diffstat (limited to 'tests/unit/test_db_utils.py')
| -rw-r--r-- | tests/unit/test_db_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_db_utils.py b/tests/unit/test_db_utils.py index dd0cd5d..96ee68f 100644 --- a/tests/unit/test_db_utils.py +++ b/tests/unit/test_db_utils.py @@ -2,9 +2,9 @@ from unittest import TestCase from unittest import mock +from types import SimpleNamespace import pytest -from types import SimpleNamespace from gn3.db_utils import database_connector from gn3.db_utils import parse_db_url |
