Removed incorrect comments

This commit is contained in:
Yuta Hayashibe
2023-10-29 21:02:44 +09:00
parent cf876fcdb4
commit 40d917b0fe

View File

@@ -4478,12 +4478,12 @@ def line_to_prompt_dict(line: str) -> dict:
continue
m = re.match(r"ss (.+)", parg, re.IGNORECASE)
if m: # negative prompt
if m:
prompt_dict['sample_sampler'] = m.group(1)
continue
m = re.match(r"cn (.+)", parg, re.IGNORECASE)
if m: # negative prompt
if m:
prompt_dict['controlnet_image'] = m.group(1)
continue