Skip to content

Commit b5186f6

Browse files
hotfix for smoothing
1 parent ab8d442 commit b5186f6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/plotter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def main():
4646
plot_command += f" {word}"
4747
# Create parser for plot subcommand
4848
plot_parser = argparse.ArgumentParser()
49-
plot_parser.add_argument("--smoothing", type=float)
49+
plot_parser.add_argument("--smoothing", type=int)
5050
plot_parser.add_argument("--bp-shift", type=int)
5151
plot_parser.add_argument("--opacity", type=float)
5252
plot_parser.add_argument("--title", nargs="+")
@@ -82,7 +82,7 @@ def main():
8282
composite_parser.add_argument("--secondary-color")
8383
composite_parser.add_argument("--scale", type=float)
8484
composite_parser.add_argument("--shift-occupancy", type=float)
85-
composite_parser.add_argument("--smoothing", type=float)
85+
composite_parser.add_argument("--smoothing", type=int)
8686
composite_parser.add_argument("--opacity", type=float)
8787
composite_parser.add_argument("--bp-shift", type=int)
8888
composite_parser.add_argument("--hide-sense", action="store_true", default=False)

0 commit comments

Comments
 (0)