Skip to content

Commit 5c5a59b

Browse files
committed
Sort imports
1 parent 9efbe84 commit 5c5a59b

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

tests/test_plugin.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
1+
2+
# Standard library imports
13
import types
24
from pathlib import Path
5+
import pkg_resources
36
from unittest.mock import Mock
47

5-
import black
6-
import pkg_resources
7-
import pytest
8+
# Python LSP imports
89
from pylsp import uris
910
from pylsp.workspace import Document, Workspace
10-
1111
from pylsp_black.plugin import load_config, pylsp_format_document, pylsp_format_range
1212

13+
# Third-party imports
14+
import black
15+
import pytest
1316

1417
here = Path(__file__).parent
1518
fixtures_dir = here / "fixtures"

0 commit comments

Comments
 (0)