Skip to content

Commit 699b032

Browse files
committed
Remove object base class
This is no longer needed, now that we dropped Python 2 compatibility.
1 parent adc99a8 commit 699b032

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/itoolkit/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import xml.dom.minidom
22

3-
class iBase(object): # noqa N801
3+
class iBase: # noqa N801
44
"""IBM i XMLSERVICE call addable operation(s).
55
66
Args:

src/itoolkit/toolkit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import warnings
77

88

9-
class iToolKit(object): # noqa N801
9+
class iToolKit: # noqa N801
1010
"""
1111
Main iToolKit XMLSERVICE collector and output parser.
1212

src/itoolkit/transport/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .errors import TransportClosedError
22

33

4-
class XmlServiceTransport(object):
4+
class XmlServiceTransport:
55
"""XMLSERVICE transport base class
66
77
Args:

0 commit comments

Comments
 (0)