Merge pull request #30 from p1c2u/fix/validate-data-shortcut-import-fix

validate_data shortcut import fix
This commit is contained in:
A 2018-04-24 14:08:06 +01:00 committed by GitHub
commit de0c9e06d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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',
]