Make pylint happier

This commit is contained in:
Frédéric Pierret (fepitre) 2019-10-20 16:40:40 +02:00
parent 9734921d9c
commit d2d1ffb806
No known key found for this signature in database
GPG Key ID: 484010B5CDC576E2
3 changed files with 10 additions and 8 deletions

View File

@ -36,6 +36,8 @@ class GUI(qubes.ext.Extension):
@qubes.ext.handler('property-set:guivm')
def on_property_set(self, subject, event, name, newvalue, oldvalue=None):
# pylint: disable=unused-argument,no-self-use
# Clean other 'guivm-XXX' tags.
# gui-daemon can connect to only one domain
tags_list = list(subject.tags)

View File

@ -2041,8 +2041,8 @@ class QubesVM(qubes.vm.mix.net.NetVMMixin, qubes.vm.BaseVM):
return 0
# this does not work, because libvirt
# return self.libvirt_domain.getCPUStats(
# libvirt.VIR_NODE_CPU_STATS_ALL_CPUS, 0)[0]['cpu_time']/10**9
# return self.libvirt_domain.getCPUStats(
# libvirt.VIR_NODE_CPU_STATS_ALL_CPUS, 0)[0]['cpu_time']/10**9
return self.libvirt_domain.info()[4]