Skip to content

Commit

Permalink
Fix typo shold -> should
Browse files Browse the repository at this point in the history
  • Loading branch information
resoliwan committed Dec 3, 2021
1 parent b0616f2 commit d93dfa5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ def OnReceiveChejanData(self, gubun, itemcnt, fidlist):
if (
order_no == self._order_no
): # 자기 주문 처리하는 입장 OR 취소 및 정정 당한 뒤 원주문 정보를 받는 입장
if is_last and self._shold_stop: # 취소 확인 이후 원주문 정보 받고 종료 (타)
if is_last and self._should_stop: # 취소 확인 이후 원주문 정보 받고 종료 (타)
self.observer.on_completed()
return
elif status == "접수":
Expand All @@ -1197,7 +1197,7 @@ def OnReceiveChejanData(self, gubun, itemcnt, fidlist):
self.observer.on_error(e)
return
elif order_no == self._orgorderno: # 취소하는 입장에서 원주문 정보 받는 케이스
if is_last and self._shold_stop: # 취소 확인 이후 원주문 정보 받고 종료 (자)
if is_last and self._should_stop: # 취소 확인 이후 원주문 정보 받고 종료 (자)
self.observer.on_completed()
return
elif status in ["접수", "체결"]:
Expand Down

0 comments on commit d93dfa5

Please sign in to comment.