Skip to content

Commit

Permalink
solve(BOJ): LV1_test_py
Browse files Browse the repository at this point in the history
# id: 문제 id를 숫자로 작성
# categories : 해당 문제의 유형을 ,로 구분하여 작성
# tags : 해당 문제의 태그를 ,로 구분하여 작성
# time : 해당 문제 풀이에 걸린 시간을 분단위 숫자로 작성
# try : 해당 문제에 몇번의 시도를 했는지 숫자로 작성
# help: 해당 문제에 외부의 도움을 받았는지 true/false로 작성
# url : 해당 문제의 url을 작성
id: 0
categories: [1,2]
tags: [3,4]
time: 5
try: 6
help: false
url:
  • Loading branch information
gogumaC committed Jun 9, 2024
1 parent 0cf3aa3 commit fd4fcec
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions requestNotionUpload.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def parse_commit_msg(msg,pattern):
match=re.match(pattern,head)
if match:
_, platform, level, title,lans = match.groups()
if platform=='BOJ': url='https://www.acmicpc.net/problem/'+id
problem=Problem(
title=title,
id=id,
Expand Down Expand Up @@ -84,7 +83,6 @@ def parse_commit_msg(msg,pattern):
local_request_url=os.getenv('request_url')
local_commit_msg=os.getenv('commit_msg')
local_pattern=os.getenv('commit_pattern')


REQUEST_URL = os.environ['REQUEST_URL'] if os.environ.get('REQUEST_URL') != None else local_request_url
COMMIT_MSG = os.environ['COMMIT_MSG'] if os.environ.get('COMMIT_MSG') != None else local_commit_msg
Expand Down

0 comments on commit fd4fcec

Please sign in to comment.