Skip to content

Commit 656915b

Browse files
committed
[stringbuilder] comment out, keep overlap code
1 parent 830d5c2 commit 656915b

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

lib/pathins/stringbuilder.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -100,21 +100,21 @@ def report_header(header: str, nocolor: bool = False) -> str:
100100
return header_string
101101

102102

103-
def overlap_result(glyphname: str, test_pass: bool, nocolor: bool = False) -> str:
104-
# color
105-
if not nocolor and IS_A_TTY:
106-
if test_pass:
107-
result_pre = f"[ {red_start}{glyphname}{reset} ]: "
108-
else:
109-
result_pre = f"[ {green_start}{glyphname}{reset} ]: "
110-
else:
111-
result_pre = f"[{glyphname}]: "
112-
# test pass indicator
113-
if test_pass:
114-
result = result_pre + "Yes"
115-
else:
116-
result = result_pre + "No"
117-
return result
103+
# def overlap_result(glyphname: str, test_pass: bool, nocolor: bool = False) -> str:
104+
# # color
105+
# if not nocolor and IS_A_TTY:
106+
# if test_pass:
107+
# result_pre = f"[ {red_start}{glyphname}{reset} ]: "
108+
# else:
109+
# result_pre = f"[ {green_start}{glyphname}{reset} ]: "
110+
# else:
111+
# result_pre = f"[ {glyphname} ]: "
112+
# # test pass indicator
113+
# if test_pass:
114+
# result = result_pre + "Yes"
115+
# else:
116+
# result = result_pre + "No"
117+
# return result
118118

119119

120120
def direction_result(

0 commit comments

Comments
 (0)