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 9efbe84 commit 5c5a59bCopy full SHA for 5c5a59b
tests/test_plugin.py
@@ -1,15 +1,18 @@
1
+
2
+# Standard library imports
3
import types
4
from pathlib import Path
5
+import pkg_resources
6
from unittest.mock import Mock
7
-import black
-import pkg_resources
-import pytest
8
+# Python LSP imports
9
from pylsp import uris
10
from pylsp.workspace import Document, Workspace
-
11
from pylsp_black.plugin import load_config, pylsp_format_document, pylsp_format_range
12
13
+# Third-party imports
14
+import black
15
+import pytest
16
17
here = Path(__file__).parent
18
fixtures_dir = here / "fixtures"
0 commit comments