Automatically resolve .best property (#514)
* automatically call get_best_server * add back SpeedtestBestServerFailer exception
This commit is contained in:
parent
72ed585c6f
commit
b2654de410
|
@ -1041,10 +1041,7 @@ class Speedtest(object):
|
||||||
@property
|
@property
|
||||||
def best(self):
|
def best(self):
|
||||||
if not self._best:
|
if not self._best:
|
||||||
raise SpeedtestMissingBestServer(
|
self.get_best_server()
|
||||||
'get_best_server not called or not able to determine best '
|
|
||||||
'server'
|
|
||||||
)
|
|
||||||
return self._best
|
return self._best
|
||||||
|
|
||||||
def get_config(self):
|
def get_config(self):
|
||||||
|
|
Loading…
Reference in New Issue