Skip to content

Commit

Permalink
Fix for extra spacings added when merging PR NeuralEnsemble#61
Browse files Browse the repository at this point in the history
  • Loading branch information
cosimolupo committed Mar 22, 2024
1 parent afec0a3 commit 3ff1ad7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cobrawap/pipeline/stage01_data_entry/scripts/plot_traces.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
from utils.parse import parse_plot_channels, none_or_int, none_or_float

CLI = argparse.ArgumentParser()
CLI.add_argument("--data", nargs='?', type=Path, required=True,
CLI.add_argument("--data", nargs='?', type=Path, required=True,
help="path to input data in neo format")
CLI.add_argument("--output", nargs='?', type=Path, required=True,
CLI.add_argument("--output", nargs='?', type=Path, required=True,
help="path of output figure")
CLI.add_argument("--t_start", nargs='?', type=none_or_float, default=0,
help="start time in seconds")
CLI.add_argument("--t_stop", nargs='?', type=none_or_float, default=10,
CLI.add_argument("--t_stop", nargs='?', type=none_or_float, default=10,
help="stop time in seconds")
CLI.add_argument("--channels", nargs='+', type=none_or_int, default=0,
help="list of channels to plot")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
help="time window length used for power spectrum estimate, in s")
CLI.add_argument("--plot_tstart", nargs='?', type=none_or_float, default=0,
help="start time in seconds")
CLI.add_argument("--plot_tstop", nargs='?', type=none_or_float, default=10,
CLI.add_argument("--plot_tstop", nargs='?', type=none_or_float, default=10,
help="stop time in seconds")
CLI.add_argument("--plot_channels", nargs='+', type=none_or_int, default=None,
help="list of channels to plot")
Expand Down

0 comments on commit 3ff1ad7

Please sign in to comment.