mirror of https://github.com/encode/starlette.git
Fix typo in api schema generation example
This commit is contained in:
parent
556a8a0a18
commit
c121cb2c40
|
@ -87,7 +87,7 @@ if __name__ == '__main__':
|
|||
|
||||
if sys.argv[-1] == "run":
|
||||
uvicorn.run(app, host='0.0.0.0', port=8000)
|
||||
elif sys.arvg[-1] == "schema":
|
||||
elif sys.argv[-1] == "schema":
|
||||
schema = schemas.get_schema(routes=app.routes)
|
||||
print(yaml.dump(schema, default_flow_style=False))
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue