Using ```bash node_modules/.bin/autorest --use=@autorest/python@5.1.0-preview.3 ``` The following swagger: ```json { "swagger": "2.0", "info": { "title": "Bug?", "version": "1.0" }, "paths": { "/thing": { "get": { "operationId": "whoCares", "parameters": [ { "name": "param", "in": "query", "type": "array", "items": { "type": "string" } } ], "responses": { "200": { "description": "Ok" } } } } } } ``` generates the following query parameter serialization code: ```python # Construct parameters query_parameters = {} # type: Dict[str, Any] if param is not None: query_parameters['param'] = self._serialize.query("param", param, '[str]') ``` It is missing the `div=','` parameter to the self._serialize.query(...)` call...
Using
The following swagger:
{ "swagger": "2.0", "info": { "title": "Bug?", "version": "1.0" }, "paths": { "/thing": { "get": { "operationId": "whoCares", "parameters": [ { "name": "param", "in": "query", "type": "array", "items": { "type": "string" } } ], "responses": { "200": { "description": "Ok" } } } } } }generates the following query parameter serialization code:
It is missing the
div=','parameter to the self._serialize.query(...)` call...