Skip to content

Commit 728d61c

Browse files
committed
Lint
1 parent 6a26eeb commit 728d61c

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

pylsp/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import sys
1212
import threading
1313
import time
14-
from typing import Callable, List, Optional
14+
from typing import List, Optional
1515

1616
import docstring_to_markdown
1717
import jedi

pylsp/plugins/jedi_completion.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
import logging
55
import os
6-
from typing import Callable, List, Optional
76

87
import parso
98

test/plugins/test_completion.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import math
55
import os
66
import sys
7-
from functools import partial
87
from pathlib import Path
98
from typing import Dict, NamedTuple
109

test/plugins/test_hover.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# Copyright 2021- Python Language Server Contributors.
33

44
import os
5-
from functools import partial
65

76
from pylsp import uris
87
from pylsp.plugins.hover import pylsp_hover
@@ -120,6 +119,7 @@ def test_hover_signature_formatting_opt_out(workspace) -> None:
120119

121120
assert {"contents": contents} == pylsp_hover(doc._config, doc, hov_position)
122121

122+
123123
def test_document_path_hover(workspace_other_root_path, tmpdir) -> None:
124124
# Create a dummy module out of the workspace's root_path and try to get
125125
# a definition on it in another file placed next to it.

0 commit comments

Comments
 (0)