fixed the configuration name for "response_mimetype"
This commit is contained in:
parent
71eff944dd
commit
dc8e42e94d
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ class BaseModel(abc.ABC):
|
||||||
# the model manager
|
# the model manager
|
||||||
self.manager = manager
|
self.manager = manager
|
||||||
# the mimetype of the model responses
|
# the mimetype of the model responses
|
||||||
self.response_mimetype: str = configuration.get("response_type", "application/json")
|
self.response_mimetype: str = configuration.get("response_mimetype", "application/json")
|
||||||
|
|
||||||
self._loaded = False
|
self._loaded = False
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue