Make pylint happy

这个提交包含在:
Bahtiar `kalkin-` Gadimov 2016-06-21 14:21:31 +02:00
父节点 0ab27d7426
当前提交 7081bd433a
找不到此签名对应的密钥
GPG 密钥 ID: 96ED3C3BA19C3DEE
共有 2 个文件被更改,包括 5 次插入1 次删除

查看文件

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

查看文件

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