refactor: numpy as np

This commit is contained in:
appel_c 2024-03-15 17:54:55 +01:00
parent 2f2e519772
commit d9ad1e87f7

View File

@ -2,7 +2,7 @@
This module provides a class for creating a pseudo signal that is computed from other signals.
"""
import numpy
import numpy as np
import scipy
from functools import reduce
@ -83,7 +83,7 @@ class ComputedSignal(SignalRO):
@compute_method.setter
def compute_method(self, method: str):
"""
Set the compute method for the pseudo signal. We import numpy and scipy as packages
Set the compute method for the pseudo signal. We import numpy (as np) and scipy as packages
that are also available for user to use in their compute method.
Args: