Skip to content

Commit 8512be9

Browse files
committed
[ruff] add flake8-commas and fixes
1 parent fb95126 commit 8512be9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,8 @@ select = [
178178
"S",
179179
# flake8-bugbear
180180
"B",
181+
# flake8-commas
182+
"COM",
181183

182184
]
183185
ignore = [

server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ async def get_auction(
410410
auction_id: int = Path(...),
411411
skip_details: bool = Query(
412412
False,
413-
description="Whether to skip the auction details and only fetch the basic information."
413+
description="Whether to skip the auction details and only fetch the basic information.",
414414
),
415415
fetch_items: bool = Query(False, description="Whether to fetch additional item pages (if available)."),
416416
fetch_mounts: bool = Query(False, description="Whether to fetch additional mounts pages (if available)."),

0 commit comments

Comments
 (0)