We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f64e4bb commit ad5d98dCopy full SHA for ad5d98d
1 file changed
tests/issues/test_issue_40.py
@@ -3,7 +3,7 @@
3
https://github.com/MAK-Relic-Tool/Issue-Tracker/issues/40
4
"""
5
import io
6
-from collections import Sequence
+from typing import Iterable
7
from contextlib import redirect_stderr
8
9
import pytest
@@ -21,7 +21,7 @@
21
22
23
@pytest.mark.parametrize(["args", "msg"], _ARGS)
24
-def test_argparse_error(args: Sequence[str], msg: str):
+def test_argparse_error(args: Iterable[str], msg: str):
25
from relic.core.cli import cli_root
26
27
with io.StringIO() as f:
0 commit comments