fix tooltip "True" and "False" back to True and False

This commit is contained in:
Désiré Werner Menrath 2025-04-19 14:40:37 +02:00
parent 980ce3c7a7
commit ea750b0cfc
2 changed files with 2 additions and 2 deletions

View File

@ -384,7 +384,7 @@ def if_tip(path):
with open(path, "r", encoding="utf-8") as set_file2: with open(path, "r", encoding="utf-8") as set_file2:
lines2 = set_file2.readlines() lines2 = set_file2.readlines()
if "False\n" in lines2: if "False\n" in lines2:
tip = "False" tip = False
else: else:
tip = "True" tip = True
return tip return tip