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:
@ -30,7 +30,7 @@ from offlineimap.repository.LocalStatus import LocalStatusRepository
|
||||
from offlineimap.error import OfflineImapError
|
||||
|
||||
|
||||
class Repository(object):
|
||||
class Repository():
|
||||
"""Abstract class that returns the correct Repository type
|
||||
instance based on 'account' and 'reqtype', e.g. a
|
||||
class:`ImapRepository` instance."""
|
||||
|
Reference in New Issue
Block a user