Commit b01db3c7 by aa.gusti

change to tuple

1 parent e5822e4b
...@@ -155,16 +155,16 @@ class Transaksi(object): ...@@ -155,16 +155,16 @@ class Transaksi(object):
class InquiryResponse(InquiryResponseBase): class InquiryResponse(InquiryResponseBase):
def __init__(self): def __init__(self):
inq_resp_field = INQUIRY_RESP_FIELDS resp_field = list(INQUIRY_RESP_FIELDS)
inq_resp_field.append('Bill Data') resp_field.append('Bill Data')
Row.__init__(inq_resp_field) Row.__init__(tuple(resp_field))
class PaymentResponse(InquiryResponse): class PaymentResponse(InquiryResponse):
def __init__(self): def __init__(self):
inq_resp_field = PAYMENT_RESP_FIELDS resp_field = list(PAYMENT_RESP_FIELDS)
inq_resp_field.append('Bill Data') resp_field.append('Bill Data')
Row.__init__(self, inq_resp_field) Row.__init__(tuple(resp_field))
INVOICE_PROFILE = [ INVOICE_PROFILE = [
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!