From f206006e6552a3a710bd2f883e1976e340570e51 Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 14 Jun 2024 15:53:03 +0200 Subject: [PATCH] feat(api): removed wrong return in helper --- ee/api/chalicelib/core/users.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ee/api/chalicelib/core/users.py b/ee/api/chalicelib/core/users.py index d33752c2d..6220758dd 100644 --- a/ee/api/chalicelib/core/users.py +++ b/ee/api/chalicelib/core/users.py @@ -1032,4 +1032,3 @@ def update_user_internal_id(email, internal_id): AND deleted_at IS NULL;""", {"email": email, "internal_id": internal_id}) ) - return helper.dict_to_camel_case(cur.fetchone())