Skip to content

Commit

Permalink
ignore lint in test
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Oct 12, 2023
1 parent ef61f97 commit 2978ef7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Unit test for :mod:`weaver.cli` utilities.
"""
import argparse

import base64
import inspect
import json
Expand Down Expand Up @@ -370,4 +369,4 @@ def test_subscriber_parsing(expect_error, subscriber_option, subscriber_dest, su
assert isinstance(exc, expect_error), f"Test expected to raise {expect_error}, but raised {exc!s} instead."
else:
assert expect_error is None, f"Test was expected to fail with {expect_error}, but did not raise"
assert dict(**vars(ns)) == subscriber_result
assert dict(**vars(ns)) == subscriber_result # pylint: disable=R1735

0 comments on commit 2978ef7

Please sign in to comment.