From cf2ff1cb99f1a18e3570d941fc74337467f18de8 Mon Sep 17 00:00:00 2001 From: cgcel Date: Fri, 2 Feb 2024 23:09:42 +0800 Subject: [PATCH] Format code. --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 07c9146..db6264f 100644 --- a/main.py +++ b/main.py @@ -122,11 +122,11 @@ def main(): else: break - # 将简体字的userdb.txt内容转成繁体字 + # 将简体字的 userdb.txt 内容转成繁体字 if (userdb_type == "0" and gboard_type == "1"): userdb_data = simp_to_trans(userdb_data) - # 将繁体字的userdb.txt内容转成简体字 + # 将繁体字的 userdb.txt 内容转成简体字 if (userdb_type == "1" and gboard_type == "0"): userdb_data = trans_to_simp(userdb_data)