We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0263606 commit 30adca5Copy full SHA for 30adca5
tests/test_plugin.py
@@ -1,17 +1,19 @@
1
# Standard library imports
2
import types
3
from pathlib import Path
4
-import pkg_resources
5
from unittest.mock import Mock
6
+# Third-party imports
7
+import black
8
+import pkg_resources
9
+import pytest
10
+
11
# Python LSP imports
12
from pylsp import uris
13
from pylsp.workspace import Document, Workspace
-from pylsp_black.plugin import load_config, pylsp_format_document, pylsp_format_range
14
-# Third-party imports
-import black
-import pytest
15
+# Local imports
16
+from pylsp_black.plugin import load_config, pylsp_format_document, pylsp_format_range
17
18
here = Path(__file__).parent
19
fixtures_dir = here / "fixtures"
0 commit comments