From a1bdb027823942f2d0d18044a7016fe5f9b7c120 Mon Sep 17 00:00:00 2001 From: Prajwal Royston Cordiero Date: Sat, 14 Feb 2026 14:57:03 +0530 Subject: [PATCH 1/5] added a new file --- hello | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 hello diff --git a/hello b/hello new file mode 100644 index 0000000..e69de29 From d97fd1bfd0152300057dbc4f85ec0c2a62f7d617 Mon Sep 17 00:00:00 2001 From: Prajwal Royston Cordiero Date: Sat, 14 Feb 2026 14:58:01 +0530 Subject: [PATCH 2/5] deleted the file created --- hello | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 hello diff --git a/hello b/hello deleted file mode 100644 index e69de29..0000000 From 5e9b9cbcc3ad5ca6b403e8c2e58178ff1ebcc758 Mon Sep 17 00:00:00 2001 From: Prajwal Royston Cordiero Date: Sat, 14 Feb 2026 15:05:58 +0530 Subject: [PATCH 3/5] made the changes for the issue 7 --- app/store.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/store.py b/app/store.py index 3cb1667..5ea91e3 100644 --- a/app/store.py +++ b/app/store.py @@ -1 +1,2 @@ +"""In-memory data store for the Workshop API.""" profile_store: dict = {} From d9d241dd6b3292c83ead6fe16bba0f4f1ff7058b Mon Sep 17 00:00:00 2001 From: Prajwal Royston Cordiero Date: Sat, 14 Feb 2026 15:13:16 +0530 Subject: [PATCH 4/5] tried to fix the issue 5 as per the instructions in the issue section --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index bf69788..53f8f2a 100644 --- a/app/main.py +++ b/app/main.py @@ -25,7 +25,7 @@ def health_check(): @app.get("/sum") -def compute_sum(a: int = Query(...), b: int = Query(...)): +def compute_sum(a: int = Query(...), b: int = Query(...)) -> dict: return {"result": a * b} From e16a77e585bf975779854f26e2fa74a1aed46b96 Mon Sep 17 00:00:00 2001 From: Prajwal Royston Cordiero Date: Sat, 14 Feb 2026 15:23:26 +0530 Subject: [PATCH 5/5] issue 7 --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 53f8f2a..36c0ffd 100644 --- a/app/main.py +++ b/app/main.py @@ -25,7 +25,7 @@ def health_check(): @app.get("/sum") -def compute_sum(a: int = Query(...), b: int = Query(...)) -> dict: +def compute_sum(a: int = Query(...), b: int = Query(...)) -> dict[str, int]: return {"result": a * b}