Skip to content

Commit 16809c6

Browse files
committed
fix: Upbit.get_closed_orders 메소드에서 state 기본값을 불필요하게 지정한 문제 수정
1 parent 82ee8d5 commit 16809c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

upbit/upbit.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ def get_open_orders(self,
600600
def get_closed_orders(self,
601601
*,
602602
market: Optional[str] = None,
603-
state: ClosedOrderState = 'done',
603+
state: ClosedOrderState | None = None,
604604
states: Optional[List[ClosedOrderState]] = None,
605605
start_time: Optional[str] = None,
606606
end_time: Optional[str] = None,

0 commit comments

Comments
 (0)