Skip to content

Commit c1ab732

Browse files
committed
patching
1 parent a0644fc commit c1ab732

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/peft/tuners/lora.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class LoraConfig(PeftConfig):
5858
default=False,
5959
metadata={"help": "Set this to True if the layer to replace stores weight like (fan_in, fan_out)"},
6060
)
61-
enable_lora: Optional[list[bool]] = field(default=None, metadata={"help": "Used with `lora.MergedLinear`."})
61+
enable_lora: Optional[List[bool]] = field(default=None, metadata={"help": "Used with `lora.MergedLinear`."})
6262
bias: str = field(default="none", metadata={"help": "Bias type for Lora. Can be 'none', 'all' or 'lora_only'"})
6363

6464
def __post_init__(self):

0 commit comments

Comments
 (0)