When using app.call_backend in a frontend function and inserting whitespace before the first parameter (placeholder for the backend function name) the placeholder will not be replaced, so loading the form in the frontend leads to a syntax error.
app.call_backend({my_app.backend_function}, ...) <= this will work
app.call_backend( {my_app.backend_function}, ...) <= this will NOT work