feat: added window_mode to cli args

This commit is contained in:
2023-01-18 17:20:32 +01:00
parent 57b249b186
commit ab233255fa

View File

@ -26,6 +26,8 @@ def handle_clargs():
parser.add_argument("-e", "--examples", dest="add_examples", action="store_true", help="Add example data")
parser.add_argument("-w", "--window_mode", default="multi", type=str, help="Set the window mode to either 'single' or 'multi'.")
return parser.parse_args().__dict__