Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kovacspe committed May 21, 2024
1 parent da72fad commit 5dd5199
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion personal/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ class ProfileSerializer(serializers.ModelSerializer):
class Meta:
model = Profile
fields = ['grade_name', 'id', 'email', 'first_name', 'last_name', 'school',
'phone', 'parent_phone', 'grade', 'is_student', 'has_school', 'school_id', 'verbose_name']
'phone', 'parent_phone', 'grade', 'is_student', 'has_school',
'school_id', 'verbose_name']
read_only_fields = ['grade_name', 'id', 'first_name', 'last_name',
'email', 'is_student', 'has_school', 'school', 'verbose_name']

Expand Down

0 comments on commit 5dd5199

Please sign in to comment.