diff options
| author | Munyoki Kilyungi | 2025-07-02 15:38:26 +0300 |
|---|---|---|
| committer | BonfaceKilz | 2025-07-07 07:58:31 +0300 |
| commit | 50060d3d5a06c6c6c2382db58e70a95857e3a5f8 (patch) | |
| tree | dac844e083fce2745ff5bef837eb7f823774391d | |
| parent | 1c158841bd81f29639ee4f318eada01141237753 (diff) | |
| download | genenetwork3-50060d3d5a06c6c6c2382db58e70a95857e3a5f8.tar.gz | |
Fix mypy.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
| -rw-r--r-- | gn3/db/case_attributes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/db/case_attributes.py b/gn3/db/case_attributes.py index 07b7bdb..e49fe5d 100644 --- a/gn3/db/case_attributes.py +++ b/gn3/db/case_attributes.py @@ -107,7 +107,7 @@ def __fetch_case_attrs_changes__(cursor, change_ids: tuple) -> list: """ if not change_ids: - return {} + return {} # type:ignore placeholders = ','.join(['%s'] * len(change_ids)) cursor.execute( "SELECT editor, json_diff_data, time_stamp " |
