diff --git a/src/scos_tekrsa/discover/__init__.py b/src/scos_tekrsa/discover/__init__.py index 7108a53..356b257 100644 --- a/src/scos_tekrsa/discover/__init__.py +++ b/src/scos_tekrsa/discover/__init__.py @@ -33,7 +33,9 @@ logger.debug(f"scos-tekrsa: SIGAN_MODULE = {SIGAN_MODULE}") logger.debug(f"scos-tekrsa: SIGAN_CLASS = {SIGAN_CLASS}") if SIGAN_MODULE == "scos_tekrsa.hardware.tekrsa_sigan" and SIGAN_CLASS == "TekRSASigan": - actions["monitor_tekrsa"] = MonitorSignalAnalyzer(parameters={"name": "monitor_tekrsa"}) + actions["monitor_tekrsa"] = MonitorSignalAnalyzer( + parameters={"name": "monitor_tekrsa"} + ) logger.debug("Created Monitor SIGAN action") # SDR specific yaml files logger.debug("Initializing yaml actions") diff --git a/src/scos_tekrsa/hardware/tekrsa_sigan.py b/src/scos_tekrsa/hardware/tekrsa_sigan.py index 70c917e..56c4d9f 100644 --- a/src/scos_tekrsa/hardware/tekrsa_sigan.py +++ b/src/scos_tekrsa/hardware/tekrsa_sigan.py @@ -7,8 +7,8 @@ from scos_actions.hardware.sigan_iface import SignalAnalyzerInterface import scos_tekrsa.hardware.tekrsa_constants as rsa_constants -from scos_tekrsa import __version__ as SCOS_TEKRSA_VERSION from scos_tekrsa import __package__ as SCOS_TEKRSA_NAME +from scos_tekrsa import __version__ as SCOS_TEKRSA_VERSION from scos_tekrsa import settings from scos_tekrsa.hardware.mocks.rsa_block import MockRSA @@ -121,7 +121,7 @@ def is_available(self) -> bool: def plugin_version(self) -> str: """Returns the current version of scos-tekrsa.""" return self._plugin_version - + @property def plugin_name(self) -> str: """Returns the current package name of scos-tekrsa."""