forked from p15670423/monkey
Common: Rename dict_ -> config_dict
This commit is contained in:
parent
dbd0d3e0dd
commit
e2f365a1f9
|
@ -45,9 +45,9 @@ class AgentConfiguration:
|
||||||
raise InvalidConfigurationError(f"{INVALID_CONFIGURATION_ERROR_MESSAGE}: {err}")
|
raise InvalidConfigurationError(f"{INVALID_CONFIGURATION_ERROR_MESSAGE}: {err}")
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def from_dict(dict_: dict):
|
def from_dict(config_dict: dict):
|
||||||
try:
|
try:
|
||||||
config_dict = AgentConfigurationSchema().load(dict_)
|
config_dict = AgentConfigurationSchema().load(config_dict)
|
||||||
return AgentConfiguration(**config_dict)
|
return AgentConfiguration(**config_dict)
|
||||||
except MarshmallowError as err:
|
except MarshmallowError as err:
|
||||||
raise InvalidConfigurationError(f"{INVALID_CONFIGURATION_ERROR_MESSAGE}: {err}")
|
raise InvalidConfigurationError(f"{INVALID_CONFIGURATION_ERROR_MESSAGE}: {err}")
|
||||||
|
|
Loading…
Reference in New Issue