Skip to content

Commit 3b1f8e5

Browse files
committed
rti fixes
1 parent 0b32685 commit 3b1f8e5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/tlo/methods/rti.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -3128,7 +3128,7 @@ def apply(self, person_id, squeeze_factor):
31283128
road_traffic_injuries = self.sim.modules['RTI']
31293129
road_traffic_injuries.rti_injury_diagnosis(person_id, self.EXPECTED_APPT_FOOTPRINT)
31303130

3131-
if 'DiagRadio'in list(self.EXPECTED_APPT_FOOTPRINT.keys()):
3131+
if 'DiagRadio' in list(self.EXPECTED_APPT_FOOTPRINT.keys()):
31323132
# TODO: use xray package when available
31333133
# TODO: robbie did not log the 'xray consumable' here as done in other modules (Tb)
31343134
self.add_equipment({'X-ray machine', 'X-ray viewer'})
@@ -4029,9 +4029,9 @@ def apply(self, person_id, squeeze_factor):
40294029
data=f"Fracture casts available for person {person_id} {open_fracture_counts} open fractures"
40304030
)
40314031

4032-
# TODO: open fractures are usually treated surgically so more equipment is likely required.
4033-
# Not immediately clear if these individuals are also scheduled to the surgical HSIs. will leave for now
4034-
self.add_equipment({'Infusion pump', 'Drip stand'})
4032+
# Todo: link to surgical equipment package when that exsists
4033+
self.add_equipment(
4034+
{'Infusion pump', 'Drip stand', 'Laparotomy Set', 'Blood pressure machine', 'Pulse oximeter'})
40354035

40364036
person = df.loc[person_id]
40374037
# update the dataframe to show this person is recieving treatment

0 commit comments

Comments
 (0)