Skip to content

Commit

Permalink
update TickSize type usage
Browse files Browse the repository at this point in the history
  • Loading branch information
mshrieve committed Dec 6, 2023
1 parent cf1db59 commit 6e6b73a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py_clob_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def get_tick_size(self, token_id: str) -> TickSize:
return self.__tick_sizes[token_id]

def __resolve_tick_size(
self, token_id: str, tick_size: Optional[TickSize] = None
self, token_id: str, tick_size: TickSize = None
) -> TickSize:
min_tick_size = self.get_tick_size(token_id)
if tick_size is not None:
Expand Down

0 comments on commit 6e6b73a

Please sign in to comment.