Skip to content

Commit

Permalink
Format code.
Browse files Browse the repository at this point in the history
  • Loading branch information
velviagris committed Feb 2, 2024
1 parent f2e3324 commit cf2ff1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit cf2ff1c

Please sign in to comment.