Skip to content

Commit

Permalink
fix generator return type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
aromanielloNTIA committed Mar 6, 2024
1 parent ab2831d commit 71dcd85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scos_actions/actions/acquire_sea_data_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
from environs import Env
from its_preselector import __version__ as PRESELECTOR_API_VERSION
from scipy.signal import sos2tf, sosfilt

from scos_actions import __version__ as SCOS_ACTIONS_VERSION
from scos_actions import utils
from scos_actions.actions.interfaces.action import Action
from scos_actions.hardware.sensor import Sensor
from scos_actions.hardware.utils import (
Expand Down Expand Up @@ -73,9 +76,6 @@
from scos_actions.signals import measurement_action_completed, trigger_api_restart
from scos_actions.utils import convert_datetime_to_millisecond_iso_format, get_days_up

from scos_actions import __version__ as SCOS_ACTIONS_VERSION
from scos_actions import utils

env = Env()
logger = logging.getLogger(__name__)

Expand Down Expand Up @@ -425,7 +425,7 @@ def __init__(self, params: dict, iir_sos: np.ndarray):
]
del params

def run(self, iqdata: np.ndarray) -> list:
def run(self, iqdata: np.ndarray):
"""
Filter the input IQ data and concurrently compute FFT, PVT, PFP, and APD results.
Expand Down

0 comments on commit 71dcd85

Please sign in to comment.