mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-24 19:19:56 +00:00
15 lines
300 B
Python
15 lines
300 B
Python
"""OpenAPI core schemas util module"""
|
|
from distutils.util import strtobool
|
|
from six import string_types
|
|
from json import dumps
|
|
|
|
|
|
def forcebool(val):
|
|
if isinstance(val, string_types):
|
|
val = strtobool(val)
|
|
|
|
return bool(val)
|
|
|
|
|
|
def dicthash(d):
|
|
return hash(dumps(d, sort_keys=True))
|