Skip to content

Commit

Permalink
autoformat
Browse files Browse the repository at this point in the history
  • Loading branch information
jhazentia committed Apr 4, 2024
1 parent 84d2972 commit b32eb3b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/scos_tekrsa/discover/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
4 changes: 2 additions & 2 deletions src/scos_tekrsa/hardware/tekrsa_sigan.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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."""
Expand Down

0 comments on commit b32eb3b

Please sign in to comment.