Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
안녕하세요. SRT 서버 로직에서 기존에 예약된 표 혹은 예매한 표가 있을 때도 동일한 티켓 예약이 가능합니다. 수정 전의 버전을 보면, SRT/srt.py의 325 line에서 SRT 서버에 예약 요청하여 중복 예약이 가능합니다. 한편, 이후 로직(328~342line)에서 중복예약인 경우
SRTDuplicateError
오류 반환을 하기 때문에 라이브러리 사용자가 동일한 티켓이 예약/예매가 안되는 것으로 인지할 수 있다고 생각합니다. 그래서SRTDuplicateError
오류 반환하는 로직을 제거하고self._log(parser.message())
등의 로그로 사용자에게 알리는 게 좋다고 생각합니다.