mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-22 03:00:10 +00:00
validate_data shortcut import fix
This commit is contained in:
parent
7214eac33d
commit
353db1f4f8
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