Skip to content

Commit 488cdca

Browse files
committedOct 30, 2021
Fix formatting
1 parent 1f093f6 commit 488cdca

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed
 

‎tests/unit/test_isort.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,24 @@
44
"""
55
import os
66
import os.path
7-
from pathlib import Path
87
import subprocess
98
import sys
109
from io import StringIO
10+
from pathlib import Path
1111
from tempfile import NamedTemporaryFile
12-
from typing import Any, Dict, Iterator, List, Set, Tuple, TYPE_CHECKING
12+
from typing import TYPE_CHECKING, Any, Dict, Iterator, List, Set, Tuple
1313

1414
import py
1515
import pytest
1616
import toml
17+
1718
import isort
18-
from isort import api, sections, files
19+
from isort import api, files, sections
20+
from isort.exceptions import ExistingSyntaxErrors, FileSkipped, MissingSection
1921
from isort.settings import Config
20-
2122
from isort.utils import exists_case_sensitive
22-
from isort.exceptions import FileSkipped, ExistingSyntaxErrors, MissingSection
23-
from .utils import as_stream, UnreadableStream
23+
24+
from .utils import UnreadableStream, as_stream
2425

2526
if TYPE_CHECKING:
2627
WrapModes: Any

0 commit comments

Comments
 (0)
Please sign in to comment.