File tree Expand file tree Collapse file tree 4 files changed +2
-13
lines changed Expand file tree Collapse file tree 4 files changed +2
-13
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,6 @@ lint.ignore = [
6363 " E501" , # line too long
6464 " F403" , # 'from module import *' used; unable to detect undefined names
6565 " E701" , # multiple statements on one line (colon)
66- " F401" , # module imported but unused
6766]
6867line-length = 119
6968lint.select = [
Original file line number Diff line number Diff line change 11import datetime
2- import numbers
32from typing import TYPE_CHECKING , Any
43
54import pytest
65
76from json2xml import dicttoxml
87
98if TYPE_CHECKING :
10- from _pytest .capture import CaptureFixture
11- from _pytest .fixtures import FixtureRequest
12- from _pytest .logging import LogCaptureFixture
13- from _pytest .monkeypatch import MonkeyPatch
14- from pytest_mock .plugin import MockerFixture
9+ pass
1510
1611
1712class TestDict2xml :
Original file line number Diff line number Diff line change 22
33"""Tests for `json2xml` package."""
44
5- import json
65from pyexpat import ExpatError
76
87import pytest
Original file line number Diff line number Diff line change 1717)
1818
1919if TYPE_CHECKING :
20- from _pytest .capture import CaptureFixture
21- from _pytest .fixtures import FixtureRequest
22- from _pytest .logging import LogCaptureFixture
23- from _pytest .monkeypatch import MonkeyPatch
24- from pytest_mock .plugin import MockerFixture
20+ pass
2521
2622
2723class TestExceptions :
You can’t perform that action at this time.
0 commit comments