From 9a3ce0abcf98809bb0edc996066161373875e9a3 Mon Sep 17 00:00:00 2001 From: Fazliddin Abdurahimov Date: Wed, 6 Aug 2025 17:45:34 +0500 Subject: [PATCH] small changes --- core/apps/accounts/views/me.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/apps/accounts/views/me.py b/core/apps/accounts/views/me.py index 56cf2a8..74a313a 100644 --- a/core/apps/accounts/views/me.py +++ b/core/apps/accounts/views/me.py @@ -45,4 +45,5 @@ class MeCompanyApiView(BaseApiViewMixin, GenericAPIView): # type: ignore account = CompanyAccountModel(company=company, user=request.user) account.save() - return Response(serializer.data, status.HTTP_201_CREATED) \ No newline at end of file + return Response(serializer.data, status.HTTP_201_CREATED) + \ No newline at end of file