includehandler: Remove useless object inheritance

pylint reports:

kas/includehandler.py:105:0: R0205: Class 'IncludeHandler' inherits from object, can be safely removed from bases in python3 (useless-object-inheritance)

Signed-off-by: Daniel Wagner <daniel.wagner@siemens.com>
This commit is contained in:
Daniel Wagner 2018-07-18 14:37:24 +02:00
parent de243b28b8
commit 1b804f937a

View File

@ -102,7 +102,7 @@ class IncludeException(Exception):
pass
class IncludeHandler(object):
class IncludeHandler:
"""
Abstract class that defines the interface of an include handler.
"""