diff --git a/unsloth/dataprep/synthetic.py b/unsloth/dataprep/synthetic.py index 4ac8ee544c..eb028588f3 100644 --- a/unsloth/dataprep/synthetic.py +++ b/unsloth/dataprep/synthetic.py @@ -74,13 +74,9 @@ def async_load_vllm( if which == "true": # Ignore --enforce-eager True subprocess_commands += ["--" + flag,] - elif which == "false": - # Add --no-enforce-eager - subprocess_commands += ["--no-" + flag,] else: subprocess_commands += ["--" + flag, which,] pass - print(subprocess_commands) vllm_process = subprocess.Popen( subprocess_commands, stdout = subprocess.PIPE,