We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a91847e commit 8d8168aCopy full SHA for 8d8168a
workbook/actions.py
@@ -132,11 +132,11 @@ def gen_total_workbook(attrs):
132
# 문제집
133
| 번호 | 주제 | 진행도 |
134
| :--: | :--: | :--: |\n''')
135
- for attr, pbar in zip(attrs, pbars):
136
- if len(attr) < 3:
137
- f.write(f'| {attr[0]} | {attr[1]} | |\n')
138
- else:
139
- f.write(f'| {attr[0]} | [{attr[1]}](workbook/{attr[0].replace(" ", "%20")}.md) | {pbar} |\n')
+ for attr, pbar in zip(attrs, pbars):
+ if len(attr) < 3:
+ f.write(f'| {attr[0]} | {attr[1]} | |\n')
+ else:
+ f.write(f'| {attr[0]} | [{attr[1]}](workbook/{attr[0].replace(" ", "%20")}.md) | {pbar} |\n')
140
141
if __name__ == "__main__":
142
attrs = parse_links()
0 commit comments