Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
market version is dict not str
  • Loading branch information
liampauling committed Feb 22, 2018
1 parent fe0f6c6 commit 0e3ea1e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion betfairlightweight/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from . import filters

__title__ = 'betfairlightweight'
__version__ = '1.5.12'
__version__ = '1.5.13'
__author__ = 'Liam Pauling'

# Set default logging handler to avoid "No handler found" warnings.
Expand Down
8 changes: 4 additions & 4 deletions betfairlightweight/endpoints/betting.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,8 @@ def place_orders(self, market_id, instructions, customer_ref=None, market_versio
:param list instructions: The number of place instructions
:param str customer_ref: Optional parameter allowing the client to pass a unique string
(up to 32 chars) that is used to de-dupe mistaken re-submissions
:param str market_version: Optional parameter allowing the client to specify which
version of the market the orders should be placed on
:param dict market_version: Optional parameter allowing the client to specify which
version of the market the orders should be placed on, e.g. "{'version': 123456}"
:param str customer_strategy_ref: An optional reference customers can use to specify
which strategy has sent the order
:param bool async: An optional flag (not setting equates to false) which specifies if
Expand Down Expand Up @@ -346,8 +346,8 @@ def replace_orders(self, market_id, instructions, customer_ref=None, market_vers
of replace instructions per request is 60
:param str customer_ref: Optional parameter allowing the client to pass a unique
string (up to 32 chars) that is used to de-dupe mistaken re-submissions
:param str market_version: Optional parameter allowing the client to specify
which version of the market the orders should be placed on
:param dict market_version: Optional parameter allowing the client to specify
which version of the market the orders should be placed on, e.g. "{'version': 123456}"
:param str async: An optional flag (not setting equates to false) which specifies
if the orders should be replaced asynchronously
:param requests.session session: Requests session object
Expand Down

2 comments on commit 0e3ea1e

@ayeRobot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Liam,

Can you contact me (Mike / aye robot) via the betfair forum? I've lost your contact details since the bf development forum went down - I have some information that you will want.

Mike

@liampauling
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Mike,

I am not a member but my email is here:

#51

Please sign in to comment.