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

Commit 2a97956

Browse files
committed
Fix Py27 pylint
1 parent c7128cd commit 2a97956

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

azure/eventhub/receiver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
log = logging.getLogger(__name__)
1616

1717

18-
class Receiver:
18+
class Receiver(object):
1919
"""
2020
Implements a Receiver.
2121
"""

azure/eventhub/sender.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
log = logging.getLogger(__name__)
1616

1717

18-
class Sender:
18+
class Sender(object):
1919
"""
2020
Implements a Sender.
2121
"""

0 commit comments

Comments
 (0)