From 69722aeef4dabcb54e010e97fd20e5712a333738 Mon Sep 17 00:00:00 2001 From: NanoCode012 Date: Mon, 29 May 2023 10:22:09 +0900 Subject: [PATCH] Remove fixme disable --- .pylintrc | 2 +- src/axolotl/prompters.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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."""