Skip to content

Commit 7c5a006

Browse files
committed
src: fix imports with isort (again)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
1 parent b509227 commit 7c5a006

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/patchtest2/mbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import re
1616
from dataclasses import dataclass
1717
from email.message import Message
18-
from typing import List, Optional, Iterator, Any
18+
from typing import Any, Iterator, List, Optional
1919

2020
import git
2121

src/patchtest2/results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import functools
22
import inspect
3-
from typing import Any, Tuple, Callable
3+
from typing import Any, Callable, Tuple
44

55

66
def patchtest_result(func: Callable[..., Tuple[str, str, str]]) -> Callable[..., str]:

src/patchtest2/suites/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import re
2+
from typing import Tuple
23

34
import pyparsing
45
import unidiff
56

67
import patchtest2.patterns as patterns # type: ignore[import-untyped]
7-
from patchtest2.results import patchtest_result
88
from patchtest2.mbox import Patch
9-
from typing import Tuple
9+
from patchtest2.results import patchtest_result
1010

1111

1212
@patchtest_result

src/patchtest2/suites/oe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import re
2+
from typing import Tuple
23

34
import pyparsing
45
import unidiff
56

67
import patchtest2.patterns as patterns # type: ignore[import-untyped]
7-
from patchtest2.results import patchtest_result
88
from patchtest2.mbox import Patch
9-
from typing import Tuple
9+
from patchtest2.results import patchtest_result
1010

1111

1212
@patchtest_result

0 commit comments

Comments
 (0)