Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Fix Py27 pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
annatisch committed Oct 1, 2018
1 parent c7128cd commit 2a97956
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion azure/eventhub/receiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
log = logging.getLogger(__name__)


class Receiver:
class Receiver(object):
"""
Implements a Receiver.
"""
Expand Down
2 changes: 1 addition & 1 deletion azure/eventhub/sender.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
log = logging.getLogger(__name__)


class Sender:
class Sender(object):
"""
Implements a Sender.
"""
Expand Down

0 comments on commit 2a97956

Please sign in to comment.