Browse Source

fix: Include Optional in parameter type and remove Union

pull/13529/head
victorroli 2 weeks ago
parent
commit
1049e4a03a
  1. 2
      docs/pt/docs/deployment/docker.md

2
docs/pt/docs/deployment/docker.md

@ -161,7 +161,7 @@ def read_root():
@app.get("/items/{item_id}")
def read_item(item_id: int, q: Union[str, None] = None):
def read_item(item_id: int, q: Optional[str] = None):
return {"item_id": item_id, "q": q}
```

Loading…
Cancel
Save