Skip to content

Commit d2c5b53

Browse files
committed
Revert "Linting for py3"
This reverts commit 24d1836.
1 parent 24d1836 commit d2c5b53

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

reposit/auth/account.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from reposit.data.api import ApiRequest
55

66

7-
class Account:
7+
class Account(object):
88
"""
99
Represents a user account
1010
"""

reposit/auth/connect.py

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

1616

17-
class RPConnection:
17+
class RPConnection(object):
1818
"""
1919
Establish a connection to the Reposit cloud
2020
"""

reposit/data/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
logger = logging.getLogger(__name__)
1414

1515

16-
class ApiRequest:
16+
class ApiRequest(object):
1717
"""
1818
A class which represents a request/response from the Reposit API.
1919

reposit/data/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from reposit.data.api import ApiRequest
77

88

9-
class Controller:
9+
class Controller(object):
1010
"""
1111
An object representing a Reposit Box.
1212
"""

0 commit comments

Comments
 (0)