File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -100,21 +100,21 @@ def report_header(header: str, nocolor: bool = False) -> str:
100
100
return header_string
101
101
102
102
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
118
118
119
119
120
120
def direction_result (
You can’t perform that action at this time.
0 commit comments