mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-26 10:42:29 +03:00
Remove unused variable 'v'
This commit is contained in:
parent
02613f3223
commit
73bcd657eb
@ -137,7 +137,7 @@ class Export(GlancesExport):
|
||||
if self.version == INFLUXDB_09:
|
||||
# Convert all int to float (mandatory for InfluxDB>0.9.2)
|
||||
# Correct issue#750 and issue#749
|
||||
for i, v in enumerate(points):
|
||||
for i, _ in enumerate(points):
|
||||
try:
|
||||
points[i] = float(points[i])
|
||||
except ValueError:
|
||||
|
Loading…
Reference in New Issue
Block a user