Skip to content

Commit

Permalink
remove gui option
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanster committed Jan 24, 2024
1 parent fd6e82f commit cf5e25d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions iopaint/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ def start(
cpu_textencoder: bool = Option(False, help=CPU_TEXTENCODER_HELP),
local_files_only: bool = Option(False, help=LOCAL_FILES_ONLY_HELP),
device: Device = Option(Device.cpu),
gui: bool = Option(False, help=GUI_HELP),
disable_model_switch: bool = Option(False),
input: Optional[Path] = Option(None, help=INPUT_HELP),
output_dir: Optional[Path] = Option(
Expand Down Expand Up @@ -179,7 +178,7 @@ def start(
local_files_only=local_files_only,
cpu_textencoder=cpu_textencoder if device == Device.cuda else False,
device=device,
gui=gui,
gui=False,
disable_model_switch=disable_model_switch,
input=input,
output_dir=output_dir,
Expand Down

0 comments on commit cf5e25d

Please sign in to comment.