cambios a metodo de consulta de codelist

FossilOrigin-Name: f127cde5990855880e481d75cd3c8fe27de0bcb534ce29dee889a630fa8e9d9b
This commit is contained in:
2020-06-02 16:36:19 +00:00
parent 15d880885e
commit d5a6a47f99
6 changed files with 39 additions and 29 deletions

View File

@@ -91,13 +91,13 @@ class SendBillAsync(SOAPService):
@dataclass
class SendTestSetAsyncResponse:
ZipKey: str
ErrorMessageList: List[str] = []
ErrorMessageList: List[str]
@classmethod
def fromdict(cls, data):
return cls(
data['ZipKey'],
data['ErrorMessageList']
data['ErrorMessageList'] or []
)
@dataclass