Skip to content

Commit

Permalink
Update api/survey/models.py
Browse files Browse the repository at this point in the history
Co-authored-by: code-review-doctor[bot] <72320148+code-review-doctor[bot]@users.noreply.github.com>
  • Loading branch information
Tllew and code-review-doctor[bot] authored Feb 12, 2024
1 parent a708017 commit 3b0b79b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/survey/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SurveyResponse(TimestampableModel):
experienced_issue = ArrayField(models.CharField(choices=ExperiencedIssueEnum.choices), blank=True, null=True)
helpful_guidance = models.CharField(choices=SatisfactionRatingEnum.choices, blank=True, default="")
user_account_process = models.CharField(choices=UserAccountEnum.choices, blank=True, default="")
service_improvements_feedback = models.TextField(blank=True, null=True)
service_improvements_feedback = models.TextField(blank=True, default="")

def __str__(self):
return "SurveyResponse #{0} - {1}".format(self.id, self.recommendation)

0 comments on commit 3b0b79b

Please sign in to comment.