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