Skip to content

Commit

Permalink
Merge pull request #207 from PerfectFit-project/488-execution-week-check
Browse files Browse the repository at this point in the history
fix: check execution week 12 instead of 11
  • Loading branch information
wbaccinelli authored Jan 9, 2024
2 parents 7c58975 + d7f4974 commit e1a0202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rasa_Bot/actions/actions_weekly_reflection.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ async def run(self, dispatcher, tracker, domain):
slot = tracker.get_slot("current_intervention_component")
user_info = get_user(user_id)
exec_week = user_info.execution_week
if exec_week > 11:
if exec_week > 12:
mark_completion(user_id, slot)
return [FollowupAction('action_end_dialog')]
return [SlotSet('week_number', str(exec_week))]
Expand Down

0 comments on commit e1a0202

Please sign in to comment.