Skip to content

Commit

Permalink
brc: changes in comments based on discussion with Andrew in #1098
Browse files Browse the repository at this point in the history
  • Loading branch information
EvaJanouskova committed Sep 29, 2023
1 parent 34c3014 commit 67196fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tlo/methods/breast_cancer.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ class BreastCancerMainPollingEvent(RegularEvent, PopulationScopeEventMixin):

def __init__(self, module):
super().__init__(module, frequency=DateOffset(months=1))
# scheduled to run every 3 months: do not change as this is hard-wired into the values of all the parameters.
# scheduled to run every month: do not change as this is hard-wired into the values of all the parameters.

def apply(self, population):
df = population.props # shortcut to dataframe
Expand Down Expand Up @@ -645,7 +645,7 @@ def __init__(self, module, person_id):

self.TREATMENT_ID = "BreastCancer_Investigation"
self.EXPECTED_APPT_FOOTPRINT = self.make_appt_footprint({"Over5OPD": 1, "Mammography": 1})
self.ACCEPTED_FACILITY_LEVEL = '3' # Mammography only available at level 3 and above.
self.ACCEPTED_FACILITY_LEVEL = '3' # Biopsy only available at level 3 and above.

def apply(self, person_id, squeeze_factor):
df = self.sim.population.props
Expand Down

0 comments on commit 67196fd

Please sign in to comment.