Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Oct 30, 2021
1 parent 1f093f6 commit 488cdca
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions tests/unit/test_isort.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,24 @@
"""
import os
import os.path
from pathlib import Path
import subprocess
import sys
from io import StringIO
from pathlib import Path
from tempfile import NamedTemporaryFile
from typing import Any, Dict, Iterator, List, Set, Tuple, TYPE_CHECKING
from typing import TYPE_CHECKING, Any, Dict, Iterator, List, Set, Tuple

import py
import pytest
import toml

import isort
from isort import api, sections, files
from isort import api, files, sections
from isort.exceptions import ExistingSyntaxErrors, FileSkipped, MissingSection
from isort.settings import Config

from isort.utils import exists_case_sensitive
from isort.exceptions import FileSkipped, ExistingSyntaxErrors, MissingSection
from .utils import as_stream, UnreadableStream

from .utils import UnreadableStream, as_stream

if TYPE_CHECKING:
WrapModes: Any
Expand Down

0 comments on commit 488cdca

Please sign in to comment.