From ef56620b6e5108705ab089a22d9a0848c23f466d Mon Sep 17 00:00:00 2001 From: Bahtiar `kalkin-` Gadimov Date: Mon, 12 Sep 2016 20:06:08 +0200 Subject: [PATCH] =?UTF-8?q?Make=20pylint=20happy=20=E2=99=A5=20qubes/core2?= =?UTF-8?q?migration.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- qubes/core2migration.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qubes/core2migration.py b/qubes/core2migration.py index bea22ac7..c1a965bf 100644 --- a/qubes/core2migration.py +++ b/qubes/core2migration.py @@ -33,7 +33,7 @@ import qubes.vm.adminvm import qubes.ext.r3compatibility -class AppVM(qubes.vm.appvm.AppVM): +class AppVM(qubes.vm.appvm.AppVM): # pylint: disable=too-many-ancestors """core2 compatibility AppVM class, with variable dir_path""" dir_path = qubes.property('dir_path', # pylint: disable=undefined-variable @@ -46,7 +46,8 @@ class AppVM(qubes.vm.appvm.AppVM): return False class StandaloneVM(qubes.vm.standalonevm.StandaloneVM): - """core2 compatibility StandaloneVM class, with variable dir_path""" + """core2 compatibility StandaloneVM class, with variable dir_path + """ # pylint: disable=too-many-ancestors dir_path = qubes.property('dir_path', # pylint: disable=undefined-variable default=(lambda self: super(StandaloneVM, self).dir_path),