diff options
| author | staticdev <staticdev-support@protonmail.com> | 2022-12-11 20:07:24 +0100 |
|---|---|---|
| committer | staticdev <staticdev-support@protonmail.com> | 2022-12-11 20:07:24 +0100 |
| commit | 3a6a61e7aa23402b99113d41d707736c6989aebc (patch) | |
| tree | d690e387c63129b6ad4e75b522e55a43e6306646 /tests/unit | |
| parent | 5b096284dd6574c9263dcba7b10ad1c345ebee0d (diff) | |
| download | isort-3a6a61e7aa23402b99113d41d707736c6989aebc.tar.gz | |
Fix mypy error
Diffstat (limited to 'tests/unit')
| -rw-r--r-- | tests/unit/test_parse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_parse.py b/tests/unit/test_parse.py index 1a66a5cd..7d9e6606 100644 --- a/tests/unit/test_parse.py +++ b/tests/unit/test_parse.py @@ -70,7 +70,7 @@ def test_fuzz_import_type(line, config): line=st.text(), in_quote=st.text(), index=st.integers(), - section_comments=st.lists(st.text()).map(tuple), + section_comments=st.lists(st.text()), needs_import=st.booleans(), ) def test_fuzz_skip_line(line, in_quote, index, section_comments, needs_import): |
