run trunk fmt

This commit is contained in:
Georges-Antoine Assi
2026-04-01 19:27:34 -04:00
parent ce85a26185
commit 0ab433b6f0
2 changed files with 8 additions and 4 deletions

View File

@@ -26,7 +26,9 @@ def stats(include_platform_stats: bool = False) -> StatsReturn:
}
if include_platform_stats:
result["METADATA_COVERAGE"] = db_stats_handler.get_metadata_coverage_by_platform()
result["METADATA_COVERAGE"] = (
db_stats_handler.get_metadata_coverage_by_platform()
)
result["REGION_BREAKDOWN"] = db_stats_handler.get_region_breakdown_by_platform()
return result

View File

@@ -18,9 +18,11 @@ const stats = ref({
});
onBeforeMount(() => {
api.get("/stats", { params: { include_platform_stats: true } }).then(({ data }) => {
stats.value = data;
});
api
.get("/stats", { params: { include_platform_stats: true } })
.then(({ data }) => {
stats.value = data;
});
});
</script>
<template>