<html><body><div style="color:#000; background-color:#fff; font-family:tahoma, new york, times, serif;font-size:12pt"><div>This may be a general python understanding problem, but I am working on a VX2 driver, and subclassing from VX3.</div><div>I am then overriding get_features, trying to call super get_features, modify that a bit and return it. The problem is that my change to rf.valid_tuning_steps do not seem to be changing at all. I must be missing some nuance of python here.</div><div><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: tahoma, 'new york', times, serif; background-color: transparent; font-style: normal; "><div style="background-color: transparent; ">class VX2Radio(vx3.VX3Radio):</div><div>....</div><div><div>&nbsp; &nbsp; def get_features(self):</div><div>&nbsp; &nbsp; &nbsp; &nbsp; rf = super(VX2Radio, self).get_features()</div><div>&nbsp; &nbsp; &nbsp; &nbsp; rf.has_bank = False</div><div>&nbsp; &nbsp; &nbsp;
 &nbsp; rf.has_bank_names = False</div><div>&nbsp; &nbsp; &nbsp; &nbsp; rf.valid_modes = list(set(VX2_MODES))</div><div><span style="font-weight: bold;">&nbsp; &nbsp; &nbsp; &nbsp; rf.valid_tuning_steps = list(VX2_STEPS)</span></div><div>&nbsp; &nbsp; &nbsp; &nbsp; rf.memory_bounds = (1, 1000)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; return rf</div><div>....</div><div><br></div><div><br></div><div>Note, the mutation of rf.memory_bounds does take effect, but it's as if the valid_tuning_steps list in the UI is the original one (wrong order) from VX2Radio, not the one I'm assigning from VX2_STEPS list.</div><div><br></div><div>Any ideas or pointers for a pynewb</div><div><br></div><div>-Jens</div><div><br></div></div></div></div></body></html>