From ebf27d9ad025f5d594e97f9cdc336d052330dde0 Mon Sep 17 00:00:00 2001 From: Arigii Date: Sat, 31 May 2025 11:28:03 +0500 Subject: [PATCH] =?UTF-8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=BE=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- API/app/infrastructure/teams_service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/API/app/infrastructure/teams_service.py b/API/app/infrastructure/teams_service.py index dd703cc..317a927 100644 --- a/API/app/infrastructure/teams_service.py +++ b/API/app/infrastructure/teams_service.py @@ -33,8 +33,8 @@ class TeamsService: raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail="Team not found") team_model.title = team.title - team_model.description = team_model.description - team_model.git_url = team_model.git_url + team_model.description = team.description + team_model.git_url = team.git_url await self.teams_repository.update(team_model)