Index: dialin/hd/treatment.py =================================================================== diff -u -rd50fb22ae4b013ec67356cbcd058f219de22a67a -r8da7657e8d0fac89fa4cc0a660e83529a6595739 --- dialin/hd/treatment.py (.../treatment.py) (revision d50fb22ae4b013ec67356cbcd058f219de22a67a) +++ dialin/hd/treatment.py (.../treatment.py) (revision 8da7657e8d0fac89fa4cc0a660e83529a6595739) @@ -577,8 +577,7 @@ @publish([ "blood_prime_tgt_vol", - "blood_prime_cum_vol", - "blood_prime_ind_cum_vol" + "blood_prime_cum_vol" ]) def _handler_blood_prime_data_sync(self, message): """ @@ -593,12 +592,9 @@ message['message'][MsgFieldPositions.START_POS_FIELD_1:MsgFieldPositions.END_POS_FIELD_1])) cum = struct.unpack('f', bytearray( message['message'][MsgFieldPositions.START_POS_FIELD_2:MsgFieldPositions.END_POS_FIELD_2])) - ind = struct.unpack('f', bytearray( - message['message'][MsgFieldPositions.START_POS_FIELD_3:MsgFieldPositions.END_POS_FIELD_3])) self.blood_prime_tgt_vol = tgt[0] self.blood_prime_cum_vol = cum[0] - self.blood_prime_ind_cum_vol = ind[0] @publish([ "recirc_timeout_secs",