i'm encountering an error like this while fetching data
WARNING mydb odoo.http: returns an invalid response type for an http request
Here is my python code
@http.route('/vehicle_web_form', methods=['GET'], website=True, auth='public', csrf=False)
def vehicle_web_form(self, **kw):
print(kw)
id = kw.get("id")
print(id)
print(type(id))
return id