From ea750b0cfc0214db23ca21f00df973f390280f48 Mon Sep 17 00:00:00 2001 From: punix Date: Sat, 19 Apr 2025 14:40:37 +0200 Subject: [PATCH] fix tooltip "True" and "False" back to True and False --- __pycache__/cls_mth_fc.cpython-312.pyc | Bin 15986 -> 15977 bytes cls_mth_fc.py | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/__pycache__/cls_mth_fc.cpython-312.pyc b/__pycache__/cls_mth_fc.cpython-312.pyc index 3e4e606cc97b45a6f2bf3a855b07b003f8a5e603..666d80eb140210c200e8cbb586d72f211d6ffedd 100644 GIT binary patch delta 58 zcmexV^RkBbG%qg~0}xD@&YW>`BQKW?lUvASB^wvU?~~JQtl7jnogWB^OT&XkI8X1)@+iU&JTnn UCeOFI0TigPm1Sg{Jk9np00R6MR{#J2 diff --git a/cls_mth_fc.py b/cls_mth_fc.py index 4c02937..2f0a0ec 100755 --- a/cls_mth_fc.py +++ b/cls_mth_fc.py @@ -384,7 +384,7 @@ def if_tip(path): with open(path, "r", encoding="utf-8") as set_file2: lines2 = set_file2.readlines() if "False\n" in lines2: - tip = "False" + tip = False else: - tip = "True" + tip = True return tip