Do not make object inheritance
This patch removes these lintian warnings: Warning R0205: Class 'X' inherits from object, can be safely removed from bases in python3 (useless-object-inheritance)
This commit is contained in:
@ -50,7 +50,7 @@ def getglobalui():
|
||||
return globalui
|
||||
|
||||
|
||||
class UIBase(object):
|
||||
class UIBase():
|
||||
def __init__(self, config, loglevel=logging.INFO):
|
||||
self.config = config
|
||||
# Is this a 'dryrun'?
|
||||
|
Reference in New Issue
Block a user