Skip to content

Commit 08c8c35

Browse files
Try fixing linter errors
1 parent b6e321f commit 08c8c35

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fastapi-python-web-apis/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import random
22
from typing import Annotated
3+
34
from fastapi import FastAPI, HTTPException, Query
45
from fastapi.middleware.cors import CORSMiddleware
56
from pydantic import BaseModel, Field
@@ -17,7 +18,7 @@
1718

1819
app = FastAPI(
1920
title="Randomizer API",
20-
description="Shuffle lists, pick random items, and generate random numbers.",
21+
description="Shuffle lists, pick random items, generate random numbers.",
2122
version="1.0.0",
2223
openapi_tags=tags_metadata,
2324
)

0 commit comments

Comments
 (0)