Skip to content

Commit 2bd7854

Browse files
committed
workbook 자동화
1 parent 1b4b6e4 commit 2bd7854

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

workbook/actions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ def get_problem_info(workbook_url):
2525
ret = []
2626
while True:
2727
x = txt.find(pattern)
28+
print(f'Found {x} in {workbook_url}')
2829
if x == -1: break
2930
txt = txt[x+9:]
31+
print(f'After {txt}')
3032
prob_id, prob_name = '', ''
3133
i = 0
3234
while txt[i] in '0123456789':

0 commit comments

Comments
 (0)