Skip to content

Commit

Permalink
fix: tiny fix of a bug made during merging a code (#67)
Browse files Browse the repository at this point in the history
* fix: tiny fix of a bug made during merging a code

* chore: release version up
  • Loading branch information
dakimura authored May 6, 2021
1 parent 7ecf0ea commit 00fbc25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pymarketstore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

from .stream import StreamConn # noqa

__version__ = '0.19'
__version__ = '0.20'
2 changes: 1 addition & 1 deletion pymarketstore/jsonrpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def _rpc_request(self, method: str, **query) -> Union[Dict, requests.Response]:
return http_resp

http_resp.raise_for_status()
return self.codec.loads(http_resp.content)
return msgpack.loads(http_resp.content)

@staticmethod
def _rpc_response(reply: Dict) -> str:
Expand Down

0 comments on commit 00fbc25

Please sign in to comment.