RFExplorer / RFExplorer-for-Python

RF Explorer libraries and examples for Python 3
GNU Lesser General Public License v3.0
51 stars 25 forks source link

fix: InputStageAvailable is a property #26

Closed philipclaesson closed 1 year ago

philipclaesson commented 2 years ago

IsInputStageAvailable is a property that returns a bool, however it is called as a function in the InputStage setter.

setting the InputStage property raises:

TypeError: 'bool' object is not callable

this fix accesses it as a property instead of as a function

philipclaesson commented 1 year ago

🤷