Skip to content

Commit 1df6863

Browse files
authored
fix(entities): change from update to patch in request entity update (#219)
fix(entities): change from update to patch in request for update of entity
1 parent 786af7f commit 1df6863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Entirety/entities/requests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def post_entity(self, entity, update, project):
6767
),
6868
) as cb_client:
6969
try:
70-
cb_client.post_entity(entity, update)
70+
cb_client.post_entity(entity, patch=update)
7171
except requests.RequestException as err:
7272
return json.loads(err.response.text).get("description")
7373
except Exception as err:

0 commit comments

Comments
 (0)