Skip to content

Commit 30adca5

Browse files
committed
Fix isort
1 parent 0263606 commit 30adca5

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

tests/test_plugin.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
# Standard library imports
22
import types
33
from pathlib import Path
4-
import pkg_resources
54
from unittest.mock import Mock
65

6+
# Third-party imports
7+
import black
8+
import pkg_resources
9+
import pytest
10+
711
# Python LSP imports
812
from pylsp import uris
913
from pylsp.workspace import Document, Workspace
10-
from pylsp_black.plugin import load_config, pylsp_format_document, pylsp_format_range
1114

12-
# Third-party imports
13-
import black
14-
import pytest
15+
# Local imports
16+
from pylsp_black.plugin import load_config, pylsp_format_document, pylsp_format_range
1517

1618
here = Path(__file__).parent
1719
fixtures_dir = here / "fixtures"

0 commit comments

Comments
 (0)