about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMunyoki Kilyungi2025-07-02 15:31:29 +0300
committerBonfaceKilz2025-07-07 07:58:31 +0300
commit2033f987c95d8210fbc38c36199328c4b2a85e9b (patch)
tree3cd0767ae89c524a35ba9b912a90bda755199fe6
parent00565655b7defa94ac89da5bfd8719c6b74326b5 (diff)
downloadgenenetwork3-2033f987c95d8210fbc38c36199328c4b2a85e9b.tar.gz
Fix minor spacing issue.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-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 a81bc07..645dec7 100644
--- a/gn3/db/case_attributes.py
+++ b/gn3/db/case_attributes.py
@@ -111,7 +111,7 @@ def __fetch_case_attrs_changes__(cursor, change_ids: tuple) -> list:
     placeholders = ','.join(['%s'] * len(change_ids))
     cursor.execute(
         "SELECT editor, json_diff_data, time_stamp "
-        f"FROM caseattributes_audit WHERE id IN ({placeholders})"
+        f"FROM caseattributes_audit WHERE id IN ({placeholders}) "
         "ORDER BY time_stamp DESC",
         change_ids
     )