Skip to content

Commit

Permalink
convert floating digit to number
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammad Faraz Maqsood authored and Muhammad Faraz Maqsood committed Feb 29, 2024
1 parent 8c7c95e commit 58c8055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openedx/features/sdaia_features/course_progress/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def send_user_course_progress_email(current_progress, progress_last_email_sent_a
)

context={
'current_progress': current_progress,
'current_progress': int(current_progress),
'progress_milestone_crossed': progress_last_email_sent_at,
'course_key': course_key,
'platform_name': platform_name,
Expand Down

0 comments on commit 58c8055

Please sign in to comment.