mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 03:00:11 +00:00
10 lines
224 B
Python
10 lines
224 B
Python
"""OpenAPI core casting schemas util module"""
|
|
from distutils.util import strtobool
|
|
from six import string_types
|
|
|
|
|
|
def forcebool(val):
|
|
if isinstance(val, string_types):
|
|
val = strtobool(val)
|
|
|
|
return bool(val)
|