style: format codes

This commit is contained in:
Soulter
2025-03-24 17:57:28 +08:00
parent 89d51d2afc
commit 0a43e4672e
2 changed files with 5 additions and 10 deletions
+2 -7
View File
@@ -65,14 +65,9 @@ class StatRoute(Route):
stat_dict = stat.__dict__
# 获取CPU使用率 - 修复CPU始终为0的问题
process = psutil.Process()
# 获取系统CPU使用率而不是进程CPU使用率
cpu_percent = psutil.cpu_percent(interval=0.5)
# 获取线程数
thread_count = threading.active_count()
# 获取插件信息
plugins = self.core_lifecycle.star_context.get_all_stars()
plugin_info = []
@@ -80,7 +75,7 @@ class StatRoute(Route):
info = {
"name": getattr(plugin, "name", plugin.__class__.__name__),
"version": getattr(plugin, "version", "1.0.0"),
"is_enabled": True
"is_enabled": True,
}
plugin_info.append(info)
+3 -3
View File
@@ -96,7 +96,7 @@
</v-container>
<!-- 配置对话框 -->
<v-dialog v-model="showPlatformCfg" width="900" persistent>
<v-dialog v-model="showPlatformCfg" persistent>
<v-card>
<v-card-title class="bg-primary text-white py-3">
<v-icon color="white" class="me-2">{{ updatingMode ? 'mdi-pencil' : 'mdi-plus' }}</v-icon>
@@ -105,12 +105,12 @@
<v-card-text class="py-4">
<v-row>
<v-col cols="12" md="6">
<v-col cols="12" md="8">
<AstrBotConfig :iterable="newSelectedPlatformConfig"
:metadata="metadata['platform_group']?.metadata"
metadataKey="platform" />
</v-col>
<v-col cols="12" md="6">
<v-col cols="12" md="4">
<v-btn :loading="iframeLoading" @click="refreshIframe" variant="tonal" color="primary" style="float: right;">
<v-icon>mdi-refresh</v-icon>
刷新