From 292c1728121360a6c513a3509af1eecab911e299 Mon Sep 17 00:00:00 2001 From: agatha Date: Fri, 12 Apr 2024 17:30:02 -0400 Subject: [PATCH] pep-8 docstrings --- backend/src/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/main.py b/backend/src/main.py index 50a628f..5526d46 100644 --- a/backend/src/main.py +++ b/backend/src/main.py @@ -1,3 +1,4 @@ +"""Agenda App""" from fastapi import FastAPI app = FastAPI() @@ -5,5 +6,5 @@ app = FastAPI() @app.get('/') async def home(): + """Dummy route""" return 'homepage' -