Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ponytailer committed Nov 11, 2021
1 parent 3aa40aa commit a82dd0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "schema_validator"
version = "0.2.2"
version = "0.2.3"
description = "A flask/quart extension to provide schema validation with pydantic."
authors = ["hs <[email protected]>"]
classifiers = [
Expand Down
5 changes: 3 additions & 2 deletions schema_validator/quart/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from .api import openapi, swagger_ui
from .api import openapi, swagger_ui, convert_model_result
from .validation import validate

__all__ = [
"openapi",
"swagger_ui",
"validate"
"validate",
"convert_model_result"
]

0 comments on commit a82dd0a

Please sign in to comment.