Skip to content

Commit 9a1fde3

Browse files
author
dori
committed
fix: reformat
1 parent 8de1261 commit 9a1fde3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mcp_as_a_judge/db/cleanup_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def get_least_recently_used_sessions(self, limit: int) -> list[str]:
128128
lru_stmt = (
129129
select(
130130
ConversationRecord.session_id,
131-
func.max(ConversationRecord.timestamp).label("last_activity")
131+
func.max(ConversationRecord.timestamp).label("last_activity"),
132132
)
133133
.group_by(ConversationRecord.session_id)
134134
.order_by(func.max(ConversationRecord.timestamp).asc())

0 commit comments

Comments
 (0)