Skip to content

Commit

Permalink
fix proxy typing
Browse files Browse the repository at this point in the history
  • Loading branch information
sndmndss committed Aug 28, 2024
1 parent 4942edc commit 0e64ab3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bpx/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def execute_order(
self_trade_prevention: str = "RejectBoth",
quote_quantity: Optional[float] = None,
client_id: Optional[int] = None,
post_only: bool | None = None,
post_only: Optional[bool] = None,
window: Optional[int] = None,
):
"""
Expand Down
2 changes: 1 addition & 1 deletion bpx/async_/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ async def execute_order(
self_trade_prevention: str = "RejectBoth",
quote_quantity: Optional[float] = None,
client_id: Optional[int] = None,
post_only: bool | None = None,
post_only: Optional[bool] = None,
window: Optional[int] = None,
):
"""
Expand Down

0 comments on commit 0e64ab3

Please sign in to comment.