Skip to content

Commit

Permalink
Type annotation for offset
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldeistler committed Nov 8, 2023
1 parent ff4f620 commit ba3669c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion neurax/stimulus.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@


def step_current(
i_delay: float, i_dur: float, i_amp: float, time_vec: jnp.asarray, i_offset=0.0
i_delay: float,
i_dur: float,
i_amp: float,
time_vec: jnp.asarray,
i_offset: float = 0.0,
):
"""
Return step current in unit nA.
Expand Down

0 comments on commit ba3669c

Please sign in to comment.