pep-8 docstrings

This commit is contained in:
agatha 2024-04-12 17:30:02 -04:00
parent d6090f4327
commit 292c172812

View File

@ -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'