From 3bbeb001bdc9d7f6bab108ba52b4bdfb35d7b9d5 Mon Sep 17 00:00:00 2001 From: Barbara Vreede Date: Tue, 21 Nov 2023 17:40:37 +0100 Subject: [PATCH] fix noqa --- tests/corpus/test_conversation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/corpus/test_conversation.py b/tests/corpus/test_conversation.py index 6de3a7b..04d3504 100644 --- a/tests/corpus/test_conversation.py +++ b/tests/corpus/test_conversation.py @@ -61,7 +61,7 @@ class TestConversationMetrics: def test_subconversation_errors(self, convo, args, error): index, before, after, time_or_index = args with error: - convo._subconversation(index=index, #noqa protected-access + convo._subconversation(index=index, # noqa protected-access before=before, after=after, time_or_index=time_or_index) @@ -78,7 +78,7 @@ def test_subconversation_errors(self, convo, args, error): ]) def test_subconversation(self, convo, args, expected_length): index, before, after, time_or_index = args - sub = convo._subconversation(index=index, #noqa protected-access + sub = convo._subconversation(index=index, # noqa W0212 before=before, after=after, time_or_index=time_or_index)