6f4870bc8d
Fixes to make pylint 2.0 stop complaining.
20 lines
356 B
Python
20 lines
356 B
Python
class BackupRestore(object):
|
|
|
|
options = object()
|
|
canceled = None
|
|
|
|
def get_restore_info(self, *args):
|
|
pass
|
|
|
|
def restore_do(self, *args):
|
|
pass
|
|
|
|
def get_restore_info(self, *args):
|
|
pass
|
|
|
|
def restore_info_verify(self, *args):
|
|
return 'test'
|
|
|
|
def get_restore_summary(self, *args):
|
|
return 'test'
|