Format boolean value to Yes/No string.
(val)
| 73 | |
| 74 | |
| 75 | def fmt_yes_no(val): |
| 76 | """Format boolean value to Yes/No string.""" |
| 77 | return "Yes" if val else "No" |
| 78 | |
| 79 | |
| 80 | def convert_sm_ver_to_cores(major, minor): |
no outgoing calls
no test coverage detected