Skip to content
Snippets Groups Projects
Unverified Commit 17dffeb6 authored by STEVAN Antoine's avatar STEVAN Antoine :crab:
Browse files

fix default value for `--font`

parent 42ace882
Branches
Tags 0.5.1
No related merge requests found
......@@ -61,7 +61,7 @@ if __name__ == "__main__":
plot_parser.add_argument("--save", "-s", type=str, help="a path to save the figure to")
plot_parser.add_argument("--fig-size", type=float, nargs=2, default=[16, 9], help="the size, in inches, of the saved image")
plot_parser.add_argument("--dpi", type=int, default=500, help="the Dots Per Inch (DPI) of the saved image")
plot_parser.add_argument("--font", type=str, default="", help="the font parameters")
plot_parser.add_argument("--font", type=str, default="{}", help="the font parameters")
plot_parser.add_argument("--use-tex", action="store_true")
multi_bar_parser = subparsers.add_parser(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment