Skip to content

Commit

Permalink
refac: remove print from get projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Pradip-p committed Oct 4, 2024
1 parent 1e60042 commit db9cef0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/backend/app/projects/project_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,6 @@ async def one(db: Connection, project_id: uuid.UUID):
)

task_records = await cur.fetchall()
print(task_records)
project_record.tasks = task_records if task_records is not None else []
project_record.task_count = len(task_records)
return project_record
Expand Down

0 comments on commit db9cef0

Please sign in to comment.