Skip to content

Commit

Permalink
Merge pull request #11 from drewp/missing-inits
Browse files Browse the repository at this point in the history
fix __init__ spelling in examples
  • Loading branch information
astrorafael committed Dec 12, 2018
2 parents 5182865 + cd403f5 commit 5b322f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/publisher.py
Expand Up @@ -56,7 +56,7 @@ def setLogLevel(namespace=None, levelStr='info'):

class MQTTService(ClientService):

def __init(self, endpoint, factory):
def __init__(self, endpoint, factory):
ClientService.__init__(self, endpoint, factory, retryPolicy=backoffPolicy())


Expand Down
2 changes: 1 addition & 1 deletion examples/pubsubs.py
Expand Up @@ -57,7 +57,7 @@ def setLogLevel(namespace=None, levelStr='info'):
class MQTTService(ClientService):


def __init(self, endpoint, factory):
def __init__(self, endpoint, factory):
ClientService.__init__(self, endpoint, factory, retryPolicy=backoffPolicy())


Expand Down
2 changes: 1 addition & 1 deletion examples/subscriber.py
Expand Up @@ -57,7 +57,7 @@ def setLogLevel(namespace=None, levelStr='info'):
class MQTTService(ClientService):


def __init(self, endpoint, factory):
def __init__(self, endpoint, factory):
ClientService.__init__(self, endpoint, factory, retryPolicy=backoffPolicy())


Expand Down

0 comments on commit 5b322f7

Please sign in to comment.