mirror of
https://github.com/nicolargo/glances.git
synced 2026-03-15 20:38:17 -04:00
Remove unused variable 'v'
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user