forked from p15670423/monkey
Common: Rename _dict -> dict_
This commit is contained in:
parent
e3cea20cd5
commit
5c739716a9
|
@ -25,8 +25,8 @@ class AgentConfiguration:
|
|||
propagation: PropagationConfiguration
|
||||
|
||||
@staticmethod
|
||||
def from_dict(_dict: dict):
|
||||
return AgentConfigurationSchema().load(_dict)
|
||||
def from_dict(dict_: dict):
|
||||
return AgentConfigurationSchema().load(dict_)
|
||||
|
||||
|
||||
class AgentConfigurationSchema(Schema):
|
||||
|
|
Loading…
Reference in New Issue