fix(Pylint): Small fixes
[csit.git] / resources / libraries / python / IncrementUtil.py
index fca0839..45260ae 100644 (file)
@@ -14,7 +14,7 @@
 """Increment utilities library."""
 
 
-class ObjIncrement(object):
+class ObjIncrement():
     """
     An iterator class used to generate incremented values in each iteration
     or when inc_fmt is called.
@@ -22,7 +22,7 @@ class ObjIncrement(object):
     Subclasses should override:
         _incr: when a simple '+' binary operation isn't sufficient.
         _str_fmt: when a simple str representation of the incremented object
-            isn't the proper format.
+        isn't the proper format.
     """
     def __init__(self, initial_value, increment):
         """