fix tooltip "True" and "False" back to True and False
This commit is contained in:
parent
980ce3c7a7
commit
ea750b0cfc
Binary file not shown.
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user