Remove disable too many arg
Browse files- src/axolotl/prompters.py +1 -1
src/axolotl/prompters.py
CHANGED
@@ -187,7 +187,7 @@ class ReflectAlpacaPrompter:
|
|
187 |
)
|
188 |
self.response_split = "ASSISTANT:"
|
189 |
|
190 |
-
def build_prompt(
|
191 |
self,
|
192 |
instruction: str,
|
193 |
input: Union[None, str] = None, # pylint: disable=redefined-builtin
|
|
|
187 |
)
|
188 |
self.response_split = "ASSISTANT:"
|
189 |
|
190 |
+
def build_prompt(
|
191 |
self,
|
192 |
instruction: str,
|
193 |
input: Union[None, str] = None, # pylint: disable=redefined-builtin
|