From d6bb748f9812da9620de6300af0f274f0281c6d3 Mon Sep 17 00:00:00 2001 From: Sheng Wu Date: Thu, 4 Jun 2026 16:54:15 -0400 Subject: [PATCH] Add docstring to ProjectDatabase class --- api/database.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/api/database.py b/api/database.py index 9afcb62..080c025 100644 --- a/api/database.py +++ b/api/database.py @@ -5,6 +5,11 @@ class ProjectDatabase: + """YOU WILL NOT NEED TO EDIT THIS CODE. + + This is strictly here to provide a simple mechanism to retrieve a list of + `pageSize` items, optionally starting after a given `startAfter`. + """ def __init__(self): data_dir = Path(__file__).parent.parent / "src" / "api" / "data" with open(data_dir / "projects.json", "r") as f: