openapi-core/openapi_core/schema/schemas/util.py

11 lines
216 B
Python
Raw Normal View History

2018-04-17 12:18:40 +00:00
"""OpenAPI core schemas util module"""
from distutils.util import strtobool
from six import string_types
2018-04-17 12:18:40 +00:00
def forcebool(val):
if isinstance(val, string_types):
2018-04-17 12:18:40 +00:00
val = strtobool(val)
return bool(val)