fix exception when outside of band
This commit is contained in:
parent
2d6b0f1877
commit
accf2a34ff
@ -51,8 +51,15 @@ class Bandplan(object):
|
||||
f.close()
|
||||
self.bands = [Band(d) for d in bands_json]
|
||||
|
||||
def findBands(self, freq):
|
||||
return [band for band in self.bands if band.inBand(freq)]
|
||||
|
||||
def findBand(self, freq):
|
||||
return next(band for band in self.bands if band.inBand(freq))
|
||||
bands = self.findBands(freq)
|
||||
if bands:
|
||||
return bands[0]
|
||||
else:
|
||||
return None
|
||||
|
||||
def collectDialFrequencis(self, range):
|
||||
return [e for b in self.bands for e in b.getDialFrequencies(range)]
|
||||
|
Loading…
Reference in New Issue
Block a user