mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-22 19:18:36 +00:00
Merge pull request #30 from p1c2u/fix/validate-data-shortcut-import-fix
validate_data shortcut import fix
This commit is contained in:
commit
de0c9e06d9
1 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
"""OpenAPI core module"""
|
||||
from openapi_core.shortcuts import (
|
||||
create_spec, validate_parameters, validate_body,
|
||||
create_spec, validate_parameters, validate_body, validate_data,
|
||||
)
|
||||
|
||||
__author__ = 'Artur Maciąg'
|
||||
|
@ -9,4 +9,6 @@ __version__ = '0.4.3'
|
|||
__url__ = 'https://github.com/p1c2u/openapi-core'
|
||||
__license__ = 'BSD 3-Clause License'
|
||||
|
||||
__all__ = ['create_spec', 'validate_parameters', 'validate_body']
|
||||
__all__ = [
|
||||
'create_spec', 'validate_parameters', 'validate_body', 'validate_data',
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue