Skip to content

Commit

Permalink
remove unnecessary keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
calellowitz committed Nov 22, 2023
1 parent f2504ce commit 90ff0d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commcare_connect/opportunity/api/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ class CommCareAppSerializer(serializers.ModelSerializer):
organization = serializers.SlugRelatedField(read_only=True, slug_field="slug")
learn_modules = LearnModuleSerializer(many=True)
install_url = serializers.SerializerMethodField()
passing_score = serializers.IntegerField(source="passing_score", default=-1)
description = serializers.CharField(source="description", default="")
passing_score = serializers.IntegerField(default=-1)
description = serializers.CharField(default="")

class Meta:
model = CommCareApp
Expand Down

0 comments on commit 90ff0d4

Please sign in to comment.