Skip to content
Snippets Groups Projects
Commit 2a5af11d authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed too long lines

parent 7e0dfa40
No related branches found
No related tags found
No related merge requests found
......@@ -153,7 +153,10 @@ class Handler(HostHandler):
# update connection state
self.virt_connected = False
# refresh those tags
for tag in ('cpualloc', 'cpurunning', 'cpuremaining', 'cpuallocratio', 'memalloc', 'memrunning', 'memremaining', 'memallocratio'):
tags_to_refresh = ('cpualloc', 'cpurunning', 'cpuremaining',
'cpuallocratio', 'memalloc', 'memrunning',
'memremaining', 'memallocratio')
for tag in tags_to_refresh:
self.tag_db['__main__'][tag].update_value()
# unregister tags that will be re registered later
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment