Skip to content

Commit

Permalink
Remove json keyword from interactor method, when posting to /api/tools
Browse files Browse the repository at this point in the history
  • Loading branch information
heisner-tillman committed Feb 15, 2024
1 parent 260e4fe commit 41a4b5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tool_util/verify/interactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ def __submit_tool(self, history_id, tool_id, tool_input, extra_data=None, files=
data = dict(
history_id=history_id, tool_id=tool_id, inputs=dumps(tool_input), tool_version=tool_version, **extra_data
)
return self._post("tools", files=files, data=data, json=True)
return self._post("tools", files=files, data=data)

def ensure_user_with_email(self, email, password=None):
admin_key = self.master_api_key
Expand Down

0 comments on commit 41a4b5e

Please sign in to comment.