|
|
@ -266,6 +266,13 @@ class DecortAccountInfo(DecortController):
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
@property
|
|
|
|
def mapped_computes_params(self) -> None | dict:
|
|
|
|
def mapped_computes_params(self) -> None | dict:
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
Map the module parameter `computes` to
|
|
|
|
|
|
|
|
parameters dictionary for the method
|
|
|
|
|
|
|
|
`DecortController.account_computes`
|
|
|
|
|
|
|
|
(excluding for `account_id`).
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
input_params = self.amodule.params['computes']
|
|
|
|
input_params = self.amodule.params['computes']
|
|
|
|
if not input_params:
|
|
|
|
if not input_params:
|
|
|
|
return input_params
|
|
|
|
return input_params
|
|
|
|