Skip to content

Commit

Permalink
Update waveform.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kazewong authored May 26, 2024
1 parent 28264fb commit 002843e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/jimgw/single_event/waveform.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ def __init__(self, f_ref: float = 20.0, use_lambda_tildes: bool = False):
self.f_ref = f_ref
self.use_lambda_tildes = use_lambda_tildes

def __call__(self, frequency: Float[Array, " n_dim"], params: dict[str, Float]
def __call__(
self, frequency: Float[Array, " n_dim"], params: dict[str, Float]
) -> dict[str, Float[Array, " n_dim"]]:
output = {}

Expand Down Expand Up @@ -152,7 +153,8 @@ def __init__(
self.use_lambda_tildes = use_lambda_tildes
self.no_taper = no_taper

def __call__(self, frequency: Float[Array, " n_dim"], params: dict[str, Float]
def __call__(
self, frequency: Float[Array, " n_dim"], params: dict[str, Float]
) -> dict[str, Float[Array, " n_dim"]]:
output = {}

Expand Down

0 comments on commit 002843e

Please sign in to comment.