-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix typos in documentation * fix pylint * fix black version and black * fix errors in tests * remove fixed version * fix app * fix pylint disable * fix pylint disable * correction in changelog and added stuff for this PR
- Loading branch information
1 parent
c2b6b41
commit edd8dfc
Showing
16 changed files
with
361 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
fastapi[all]==0.109.1 | ||
uvicorn==0.22.0 | ||
sentry-sdk[fastapi]==1.28.1 | ||
python-decouple==3.8 | ||
fastapi[all] | ||
uvicorn | ||
sentry-sdk[fastapi] | ||
python-decouple | ||
pydantic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .app import * | ||
from .tools import * | ||
from .address import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from pydantic import BaseModel | ||
|
||
|
||
class Address(BaseModel): | ||
raw: str |
Oops, something went wrong.