cast server id to int to be more consistent with the rest of the data
This commit is contained in:
parent
9ef5620b58
commit
3b29d5701d
|
@ -353,7 +353,7 @@ class SpeedtestResults(object):
|
|||
return dict(download=self.download,
|
||||
upload=self.upload,
|
||||
ping=self.ping,
|
||||
server=self.server['id'])
|
||||
server=int(self.server['id']))
|
||||
|
||||
def csv(self):
|
||||
"""Return data in CSV format in the order of:
|
||||
|
|
Loading…
Reference in New Issue