File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,8 @@ select = [
178178 " S" ,
179179 # flake8-bugbear
180180 " B" ,
181+ # flake8-commas
182+ " COM" ,
181183
182184]
183185ignore = [
Original file line number Diff line number Diff 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)." ),
You can’t perform that action at this time.
0 commit comments