about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn3/db/case_attributes.py2
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 "