@@ -10,12 +10,12 @@ def pylsp_code_actions(config, workspace, document, range, context):
10
10
11
11
12
12
@hookspec
13
- def pylsp_code_lens (config , workspace , document ):
13
+ def pylsp_code_lens (config , workspace , document ) -> None :
14
14
pass
15
15
16
16
17
17
@hookspec
18
- def pylsp_commands (config , workspace ):
18
+ def pylsp_commands (config , workspace ) -> None :
19
19
"""The list of command strings supported by the server.
20
20
21
21
Returns:
@@ -24,110 +24,112 @@ def pylsp_commands(config, workspace):
24
24
25
25
26
26
@hookspec
27
- def pylsp_completions (config , workspace , document , position , ignored_names ):
27
+ def pylsp_completions (config , workspace , document , position , ignored_names ) -> None :
28
28
pass
29
29
30
30
31
31
@hookspec (firstresult = True )
32
- def pylsp_completion_item_resolve (config , workspace , document , completion_item ):
32
+ def pylsp_completion_item_resolve (config , workspace , document , completion_item ) -> None :
33
33
pass
34
34
35
35
36
36
@hookspec
37
- def pylsp_definitions (config , workspace , document , position ):
37
+ def pylsp_definitions (config , workspace , document , position ) -> None :
38
38
pass
39
39
40
40
41
41
@hookspec
42
- def pylsp_dispatchers (config , workspace ):
42
+ def pylsp_dispatchers (config , workspace ) -> None :
43
43
pass
44
44
45
45
46
46
@hookspec
47
- def pylsp_document_did_open (config , workspace , document ):
47
+ def pylsp_document_did_open (config , workspace , document ) -> None :
48
48
pass
49
49
50
50
51
51
@hookspec
52
- def pylsp_document_did_save (config , workspace , document ):
52
+ def pylsp_document_did_save (config , workspace , document ) -> None :
53
53
pass
54
54
55
55
56
56
@hookspec
57
- def pylsp_document_highlight (config , workspace , document , position ):
57
+ def pylsp_document_highlight (config , workspace , document , position ) -> None :
58
58
pass
59
59
60
60
61
61
@hookspec
62
- def pylsp_document_symbols (config , workspace , document ):
62
+ def pylsp_document_symbols (config , workspace , document ) -> None :
63
63
pass
64
64
65
65
66
66
@hookspec (firstresult = True )
67
- def pylsp_execute_command (config , workspace , command , arguments ):
67
+ def pylsp_execute_command (config , workspace , command , arguments ) -> None :
68
68
pass
69
69
70
70
71
71
@hookspec
72
- def pylsp_experimental_capabilities (config , workspace ):
72
+ def pylsp_experimental_capabilities (config , workspace ) -> None :
73
73
pass
74
74
75
75
76
76
@hookspec
77
- def pylsp_folding_range (config , workspace , document ):
77
+ def pylsp_folding_range (config , workspace , document ) -> None :
78
78
pass
79
79
80
80
81
81
@hookspec (firstresult = True )
82
- def pylsp_format_document (config , workspace , document , options ):
82
+ def pylsp_format_document (config , workspace , document , options ) -> None :
83
83
pass
84
84
85
85
86
86
@hookspec (firstresult = True )
87
- def pylsp_format_range (config , workspace , document , range , options ):
87
+ def pylsp_format_range (config , workspace , document , range , options ) -> None :
88
88
pass
89
89
90
90
91
91
@hookspec (firstresult = True )
92
- def pylsp_hover (config , workspace , document , position ):
92
+ def pylsp_hover (config , workspace , document , position ) -> None :
93
93
pass
94
94
95
95
96
96
@hookspec
97
- def pylsp_initialize (config , workspace ):
97
+ def pylsp_initialize (config , workspace ) -> None :
98
98
pass
99
99
100
100
101
101
@hookspec
102
- def pylsp_initialized ():
102
+ def pylsp_initialized () -> None :
103
103
pass
104
104
105
105
106
106
@hookspec
107
- def pylsp_lint (config , workspace , document , is_saved ):
107
+ def pylsp_lint (config , workspace , document , is_saved ) -> None :
108
108
pass
109
109
110
110
111
111
@hookspec
112
- def pylsp_references (config , workspace , document , position , exclude_declaration ):
112
+ def pylsp_references (
113
+ config , workspace , document , position , exclude_declaration
114
+ ) -> None :
113
115
pass
114
116
115
117
116
118
@hookspec (firstresult = True )
117
- def pylsp_rename (config , workspace , document , position , new_name ):
119
+ def pylsp_rename (config , workspace , document , position , new_name ) -> None :
118
120
pass
119
121
120
122
121
123
@hookspec
122
- def pylsp_settings (config ):
124
+ def pylsp_settings (config ) -> None :
123
125
pass
124
126
125
127
126
128
@hookspec (firstresult = True )
127
- def pylsp_signature_help (config , workspace , document , position ):
129
+ def pylsp_signature_help (config , workspace , document , position ) -> None :
128
130
pass
129
131
130
132
131
133
@hookspec
132
- def pylsp_workspace_configuration_changed (config , workspace ):
134
+ def pylsp_workspace_configuration_changed (config , workspace ) -> None :
133
135
pass
0 commit comments