Skip to content

Commit

Permalink
Fix import sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
akaihola committed Jul 3, 2020
1 parent dd80058 commit f1bcf85
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/darker/diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@

import logging
from difflib import SequenceMatcher
from typing import List, Generator, Tuple
from typing import Generator, List, Tuple

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion src/darker/tests/test_black_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import pytest

from darker.black_diff import read_black_config, run_black, run_black
from darker.black_diff import read_black_config, run_black


@pytest.mark.parametrize(
Expand Down
2 changes: 1 addition & 1 deletion src/darker/tests/test_diff.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from textwrap import dedent

from black import format_str, FileMode
from black import FileMode, format_str

from darker.diff import (
diff_and_get_opcodes,
Expand Down
2 changes: 1 addition & 1 deletion src/darker/tests/test_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import pytest

from darker.git import (
git_diff_name_only,
git_get_unmodified_content,
should_reformat_file,
git_diff_name_only,
)


Expand Down

0 comments on commit f1bcf85

Please sign in to comment.