Skip to content

Commit

Permalink
type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
poly-rodr committed May 1, 2024
1 parent f4ab4eb commit 990ec3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py_clob_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def get_tick_size(self, token_id: str) -> TickSize:
return self.__tick_sizes[token_id]

result = get("{}{}?token_id={}".format(self.host, GET_TICK_SIZE, token_id))
self.__tick_sizes[token_id] = result["minimum_tick_size"]
self.__tick_sizes[token_id] = str(result["minimum_tick_size"])

return self.__tick_sizes[token_id]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="py_clob_client",
version="0.15.0",
version="0.15.1",
author="Polymarket Engineering",
author_email="[email protected]",
maintainer="Polymarket Engineering",
Expand Down

0 comments on commit 990ec3a

Please sign in to comment.