Skip to content

Commit

Permalink
activity_points.py: Fix docstring typo
Browse files Browse the repository at this point in the history
This fixes the typo and changes
it from touple --> tuple.

Closes #192
  • Loading branch information
sanchit48 committed Jan 4, 2019
1 parent b95db60 commit db5c78e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gamification/process/activity_points.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def get_activity_with_points(activity_type, labels):
activity. e.g. issue or merge_request.
:param labels: a QuerySet dict containing the 'name'
as key and 'name of the label' as value.
:return: a touple of points and activity string.
:return: a tuple of points and activity string.
"""
labels = get_sorted_labels(labels)
points = get_total_points(activity_type, labels)
Expand Down

0 comments on commit db5c78e

Please sign in to comment.