diff --git a/.pylintrc b/.pylintrc index 53fd6533e..512af30e0 100644 --- a/.pylintrc +++ b/.pylintrc @@ -9,4 +9,4 @@ generated-members=numpy.*, torch.* [pylint.messages_control] -disable=W1203, C0116, C0301, E0401, R0912, R0914, R0915, R0913 +disable=W1203, C0116, C0301, E0401, R0912, R0914, R0915, R0913, fixme diff --git a/src/axolotl/prompters.py b/src/axolotl/prompters.py index 418758ef7..eced1d4a5 100644 --- a/src/axolotl/prompters.py +++ b/src/axolotl/prompters.py @@ -220,7 +220,7 @@ class SeparatorStyle(Enum): DOLLY = auto() -# TODO clean this 💩 up # pylint: disable=fixme +# TODO clean this 💩 up @dataclasses.dataclass class Conversation: """A class that keeps all conversation history."""