mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-18 20:11:20 +00:00
Merge pull request #456 from marcbonnici/param_dict_fix
Types: Fix parameter dict get method
This commit is contained in:
commit
77bb14331f
@ -420,7 +420,7 @@ class ParameterDict(dict):
|
||||
return self.__iter__()
|
||||
|
||||
def get(self, name):
|
||||
return self[name]
|
||||
return self._decode(dict.get(self, name))
|
||||
|
||||
def pop(self, key):
|
||||
return self._decode(dict.pop(self, key))
|
||||
|
Loading…
x
Reference in New Issue
Block a user