File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -190,13 +190,11 @@ def get_mem_info():
190
190
'total' : '%.2f' % (psutil .virtual_memory ().total * 1.0 / 1048576 ),
191
191
'used' : '%.2f' % (psutil .virtual_memory ().used * 1.0 / 1048576 ),
192
192
'free' : '%.2f' % (psutil .virtual_memory ().free * 1.0 / 1048576 ),
193
- 'available' : '%.2f' % (psutil .virtual_memory ().available * 1.0 / 1048576 ),
194
193
'percent' : psutil .virtual_memory ().percent ,
195
194
}, 'Swap' : {
196
195
'total' : '%.2f' % (psutil .swap_memory ().total * 1.0 / 1048576 ),
197
196
'used' : '%.2f' % (psutil .swap_memory ().used * 1.0 / 1048576 ),
198
197
'free' : '%.2f' % (psutil .swap_memory ().free * 1.0 / 1048576 ),
199
- 'available' : '%.2f' % (psutil .swap_memory ().available * 1.0 / 1048576 ),
200
198
'percent' : psutil .swap_memory ().percent ,
201
199
}}
202
200
return info
You can’t perform that action at this time.
0 commit comments