Browse Source

Make pylint happy

Bahtiar `kalkin-` Gadimov 8 years ago
parent
commit
7081bd433a
2 changed files with 5 additions and 1 deletions
  1. 4 0
      qubes/storage/file.py
  2. 1 1
      qubes/vm/adminvm.py

+ 4 - 0
qubes/storage/file.py

@@ -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

+ 1 - 1
qubes/vm/adminvm.py

@@ -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):