jmons / ramlwrap

Wrapping Raml around Django rest-api's
MIT License
8 stars 2 forks source link

Handle an empty status code response #55

Closed timharveyuk closed 4 years ago

timharveyuk commented 4 years ago

Fixes parsing error if the raml has an empty status code with no body, description etc (e.g. see 204 response below)

/api:
    get:
        responses:
            204:

Also, some minor typos and clean up.