From 20249d79eb9c06d9d475fc60468c8cad04698c6f Mon Sep 17 00:00:00 2001 From: AgileNinjaA <148424025+AgileNinjaA@users.noreply.github.com> Date: Sat, 14 Feb 2026 09:42:59 +0000 Subject: [PATCH 1/2] I have removed import math --- README.md | 2 +- app/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 64ca216..ffd3909 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# FastAPI Worksohp +# FastAPI Workshop A tiny FastAPI application built for practicing open-source contributions. This project is designed for third-year CS students participating in diff --git a/app/main.py b/app/main.py index bf69788..7ed8ec4 100644 --- a/app/main.py +++ b/app/main.py @@ -5,7 +5,7 @@ from app.models import ProfileCreate, ProfileResponse from app.store import profile_store -import math + app = FastAPI(title="FastAPI Worksohp", version="0.1.0") From fea1438e936faddb629e24296f2c3e718d25bb7f Mon Sep 17 00:00:00 2001 From: AgileNinjaA <148424025+AgileNinjaA@users.noreply.github.com> Date: Sat, 14 Feb 2026 09:56:03 +0000 Subject: [PATCH 2/2] I have changed uvicorn . Issue no #18 --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 7f02354..8d7d404 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ fastapi>=0.110.0 pydantic>=2.0.0 httpx>=0.27.0 pytest>=8.0.0 +uvicorn[standard]>=0.29.0 \ No newline at end of file