Skip to content

Commit

Permalink
fix noqa
Browse files Browse the repository at this point in the history
  • Loading branch information
bvreede committed Nov 21, 2023
1 parent 7802063 commit 3bbeb00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/corpus/test_conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 3bbeb00

Please sign in to comment.