Skip to content

Commit 24d1836

Browse files
committed
Linting for py3
1 parent 83d0671 commit 24d1836

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(object):
7+
class Account:
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(object):
17+
class RPConnection:
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(object):
16+
class ApiRequest:
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(object):
9+
class Controller:
1010
"""
1111
An object representing a Reposit Box.
1212
"""

0 commit comments

Comments
 (0)