(number, heading)
| 213 | |
| 214 | # 4. Generate markdown by loop categorized csv file dict |
| 215 | def pr_title(number, heading): |
| 216 | # print(f"number:{number}, heading:{heading}, len(pr_dict):{len(pr_dict)}") |
| 217 | try: |
| 218 | title = pr_dict[int(number)]["title"] |
| 219 | title = strip_header(title, heading) |
| 220 | except Exception: |
| 221 | sprint("The out.pkl file is not match with csv file.") |
| 222 | exit(1) |
| 223 | return title |
| 224 | |
| 225 | output = "" |
| 226 | for key in keys: |
no test coverage detected
searching dependent graphs…