mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 19:19:55 +00:00
17 lines
504 B
Python
17 lines
504 B
Python
"""OpenAPI X-Model extension models module"""
|
|
|
|
|
|
class BaseModel(dict):
|
|
"""Base class for OpenAPI X-Model."""
|
|
|
|
def __getattr__(self, attr_name):
|
|
"""Only search through properties if attribute not found normally.
|
|
:type attr_name: str
|
|
"""
|
|
try:
|
|
return self[attr_name]
|
|
except KeyError:
|
|
raise AttributeError(
|
|
'type object {0!r} has no attribute {1!r}'
|
|
.format(type(self).__name__, attr_name)
|
|
)
|