Skip to content

Commit d77d64f

Browse files
committed
drop unneeded object inheritance
There is no longer a need to define Object inheritance in various classes (with Python 2.7 dropped); updating. Signed-off-by: James Knight <[email protected]>
1 parent 4f9967f commit d77d64f

File tree

2 files changed

+2
-2
lines changed
  • sphinxcontrib/confluencebuilder
  • tests/validation-sets/extensions/src

2 files changed

+2
-2
lines changed

sphinxcontrib/confluencebuilder/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def _wrapper(self, *args, **kwargs):
159159
return _decorator
160160

161161

162-
class Rest(object):
162+
class Rest:
163163
CONFLUENCE_DEFAULT_ENCODING = 'utf-8'
164164

165165
def __init__(self, config):

tests/validation-sets/extensions/src/Hello.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55

6-
class Hello(object):
6+
class Hello:
77
"""
88
This is a Hello class docstring
99
"""

0 commit comments

Comments
 (0)