mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 11:09:53 +00:00
10 lines
178 B
Python
10 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)
|