Skip to content

Commit

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

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

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

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

if self.use_lambda_tildes:
Expand Down

0 comments on commit 28264fb

Please sign in to comment.