Skip to content

Commit

Permalink
closes #70
Browse files Browse the repository at this point in the history
  • Loading branch information
liampauling committed May 11, 2017
1 parent 171d77a commit c57d0f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://travis-ci.org/liampauling/betfairlightweight.svg?branch=master)](https://travis-ci.org/liampauling/betfairlightweight) [![Coverage Status](https://coveralls.io/repos/github/liampauling/betfairlightweight/badge.svg?branch=master)](https://coveralls.io/github/liampauling/betfairlightweight?branch=master) [![PyPI version](https://badge.fury.io/py/betfairlightweight.svg)](https://pypi.python.org/pypi/betfairlightweight)

Lightweight, super fast pythonic wrapper for [Betfair API-NG](http://docs.developer.betfair.com/docs/display/1smk3cen4v3lu3yomq5qye0ni) allowing all betting operations (including market and order streaming) and most account operations, see examples.
Lightweight, super fast (uses c libraries) pythonic wrapper for [Betfair API-NG](http://docs.developer.betfair.com/docs/display/1smk3cen4v3lu3yomq5qye0ni) allowing all betting operations (including market and order streaming) and most account operations, see examples.

[Documentation](https://github.com/liampauling/betfairlightweight/wiki)

Expand Down
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.1.3'
__version__ = '1.1.4'
__author__ = 'Liam Pauling'

# Set default logging handler to avoid "No handler found" warnings.
Expand Down
2 changes: 1 addition & 1 deletion betfairlightweight/resources/bettingresources.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ class LimitOrder(object):
:type time_in_force: unicode
"""

def __init__(self, persistenceType, price, size, timeInForce=None, minFillSize=None, betTargetType=None,
def __init__(self, price, size, persistenceType=None, timeInForce=None, minFillSize=None, betTargetType=None,
betTargetSize=None):
self.persistence_type = persistenceType
self.price = price
Expand Down

0 comments on commit c57d0f6

Please sign in to comment.