Make pylint happy

This commit is contained in:
Bahtiar `kalkin-` Gadimov 2016-06-21 14:21:31 +02:00
parent 0ab27d7426
commit 7081bd433a
No known key found for this signature in database
GPG Key ID: 96ED3C3BA19C3DEE
2 changed files with 5 additions and 1 deletions

View File

@ -82,6 +82,10 @@ class FilePool(Pool):
'driver': FilePool.driver,
}
def is_outdated(self, volume):
# FIX: Implement or remove this at all?
raise NotImplementedError
def resize(self, volume, size):
''' Expands volume, throws
:py:class:`qubst.storage.StoragePoolException` if given size is

View File

@ -104,7 +104,7 @@ class AdminVM(qubes.vm.qubesvm.QubesVM):
.. seealso:
:py:meth:`qubes.vm.qubesvm.QubesVM.verify_files`
'''
''' # pylint: disable=no-self-use
return True
def start(self, **kwargs):