Skip to content

Commit

Permalink
Merge pull request #2222 from ParthipPR/dev
Browse files Browse the repository at this point in the history
"Fix: corrected errors in profile_view.py"
  • Loading branch information
jelanmathewjames authored Sep 1, 2024
2 parents 3351130 + 2c01d19 commit f0881de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/dashboard/profile/profile_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def post(self, request, muid):
return CustomResponse(response=response_data).get_failure_response()
return CustomResponse(response="Invalid data provided").get_failure_response()

def get(self, request, muid):
def get(self, request, muid):
try:
user = User.objects.get(muid=muid)
except User.DoesNotExist:
Expand Down

0 comments on commit f0881de

Please sign in to comment.