mirror of
https://github.com/Bing-su/adetailer.git
synced 2026-03-12 08:50:02 +00:00
fix(scripts): fix script default join string
This commit is contained in:
@@ -248,7 +248,7 @@ BBOX_SORTBY = [
|
||||
]
|
||||
MASK_MERGE_INVERT = ["None", "Merge", "Merge and Invert"]
|
||||
|
||||
_script_default = [
|
||||
_script_default = (
|
||||
"dynamic_prompting",
|
||||
"dynamic_thresholding",
|
||||
"wildcard_recursive",
|
||||
@@ -256,5 +256,5 @@ _script_default = [
|
||||
"lora_block_weight",
|
||||
"negpip",
|
||||
"soft_inpainting",
|
||||
]
|
||||
SCRIPT_DEFAULT = "".join(sorted(_script_default))
|
||||
)
|
||||
SCRIPT_DEFAULT = ",".join(sorted(_script_default))
|
||||
|
||||
Reference in New Issue
Block a user