openapi-core/openapi_core/schema/schemas/util.py
2018-05-25 11:30:50 +01:00

9 lines
178 B
Python

"""OpenAPI core schemas util module"""
from distutils.util import strtobool
def forcebool(val):
if isinstance(val, str):
val = strtobool(val)
return bool(val)