From 6168a5513453b1f5e52f38b80767aea803b6730b Mon Sep 17 00:00:00 2001 From: Feanix-Fyre <24631543+Feanix-Fyre@users.noreply.github.com> Date: Wed, 23 Aug 2023 10:50:03 -0400 Subject: [PATCH] I think I got it for real this time --- facefusion/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/facefusion/core.py b/facefusion/core.py index 9aa945a7..fc430c2b 100755 --- a/facefusion/core.py +++ b/facefusion/core.py @@ -35,7 +35,7 @@ def parse_args() -> None: program.add_argument("--port", help = wording.get('gradio_port_help'), dest = 'gradio_port', type = int, default = None) program.add_argument("--share", help = wording.get('gradio_share_help'), dest = 'gradio_share', action = 'store_true') program.add_argument("--listen", help = wording.get('gradio_listen_help'), dest = 'gradio_listen', type = str, default = None, metavar = "IP", nargs = "?", const = "0.0.0.0") - program.add_argument('--headless', help = wording.get('headless_help'), dest = 'headless', action = 'store_true') + program.add_argument('--headless', help = wording.get('headless_help'), dest = 'headless', action = 'store_true', default = None) program.add_argument('--frame-processors', help = wording.get('frame_processors_help').format(choices = ', '.join(list_module_names('facefusion/processors/frame/modules'))), dest = 'frame_processors', default = ['face_swapper'], nargs = '+') program.add_argument('--ui-layouts', help = wording.get('ui_layouts_help').format(choices = ', '.join(list_module_names('facefusion/uis/layouts'))), dest = 'ui_layouts', default = ['default'], nargs='+') program.add_argument('--keep-fps', help = wording.get('keep_fps_help'), dest = 'keep_fps', action = 'store_true')