pre-commit run -a

This commit is contained in:
kafonek
2021-04-08 09:28:46 -04:00
parent 1220673e61
commit 81d481a110
2 changed files with 11 additions and 10 deletions

View File

@@ -2,7 +2,6 @@
[FastAPI](https://fastapi.tiangolo.com/) is a popular new web framework attractive for its type hinting, async support, automatic doc generation (Swagger), and more. Their [Feature highlights](https://fastapi.tiangolo.com/features/) sum it up nicely.
# Swagger UI with OAuth demo
![Fastapi Service Example](./fastapi_example.gif)

View File

@@ -1,5 +1,7 @@
from datetime import datetime
from typing import Any, List, Optional
from typing import Any
from typing import List
from typing import Optional
from pydantic import BaseModel