Skip to content

Commit

Permalink
Remove colon from return JSON
Browse files Browse the repository at this point in the history
Signed-off-by: Ygal Blum <[email protected]>
  • Loading branch information
ygalblum committed Jul 4, 2024
1 parent 6c95b99 commit e84d5ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slack_server_mock/servers/actor/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async def post(self):
self.write({"error": "The application is not connected"})
return

self.write({"answer:": response})
self.write({"answer": response})


class ConnectedHandler(RequestHandler): # pylint: disable=W0223
Expand Down

0 comments on commit e84d5ca

Please sign in to comment.