From 880ddf97c60678d0d86b1340d268566c51e72ed4 Mon Sep 17 00:00:00 2001 From: jiandaobao Date: Tue, 19 Aug 2025 10:14:25 +0800 Subject: [PATCH] cleancode --- debug/accuracy_tools/msprobe/core/monitor/db_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug/accuracy_tools/msprobe/core/monitor/db_utils.py b/debug/accuracy_tools/msprobe/core/monitor/db_utils.py index b135694c4..cf623311b 100644 --- a/debug/accuracy_tools/msprobe/core/monitor/db_utils.py +++ b/debug/accuracy_tools/msprobe/core/monitor/db_utils.py @@ -102,7 +102,7 @@ class MonitorSql: "global_stats": cls.create_global_stat_table, } if not table_name: - return [table_creators.get(table, lambda x:"")() for table in table_creators] + return [table_creators.get(table, lambda x: "")() for table in table_creators] if table_name not in table_creators: raise ValueError(f"Unsupported table name: {table_name}") return table_creators[table_name]() -- Gitee