Skip to content

Commit

Permalink
🎨 Format - ran black and prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
aybruhm committed Feb 8, 2024
1 parent d28f3ff commit ba1beed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions agenta-backend/agenta_backend/models/converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ async def evaluation_db_to_pydantic(
)
revision = str(variant_revision.revision)
aggregated_results = await aggregated_result_to_pydantic(
evaluation_db.aggregated_results
)
evaluation_db.aggregated_results
)
return Evaluation(
id=str(evaluation_db.id),
app_id=str(evaluation_db.app.id),
Expand Down
2 changes: 1 addition & 1 deletion agenta-web/src/lib/services/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ export const loadTestset = async (testsetId: string | null) => {
name: "No Test Set Associated",
created_at: "",
updated_at: "",
csvdata: []
csvdata: [],
}
}
const response = await axios.get(`${getAgentaApiUrl()}/api/testsets/${testsetId}/`)
Expand Down

0 comments on commit ba1beed

Please sign in to comment.