@@ -10,12 +10,12 @@ def pylsp_code_actions(config, workspace, document, range, context):
1010
1111
1212@hookspec
13- def pylsp_code_lens (config , workspace , document ):
13+ def pylsp_code_lens (config , workspace , document ) -> None :
1414 pass
1515
1616
1717@hookspec
18- def pylsp_commands (config , workspace ):
18+ def pylsp_commands (config , workspace ) -> None :
1919 """The list of command strings supported by the server.
2020
2121 Returns:
@@ -24,110 +24,112 @@ def pylsp_commands(config, workspace):
2424
2525
2626@hookspec
27- def pylsp_completions (config , workspace , document , position , ignored_names ):
27+ def pylsp_completions (config , workspace , document , position , ignored_names ) -> None :
2828 pass
2929
3030
3131@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 :
3333 pass
3434
3535
3636@hookspec
37- def pylsp_definitions (config , workspace , document , position ):
37+ def pylsp_definitions (config , workspace , document , position ) -> None :
3838 pass
3939
4040
4141@hookspec
42- def pylsp_dispatchers (config , workspace ):
42+ def pylsp_dispatchers (config , workspace ) -> None :
4343 pass
4444
4545
4646@hookspec
47- def pylsp_document_did_open (config , workspace , document ):
47+ def pylsp_document_did_open (config , workspace , document ) -> None :
4848 pass
4949
5050
5151@hookspec
52- def pylsp_document_did_save (config , workspace , document ):
52+ def pylsp_document_did_save (config , workspace , document ) -> None :
5353 pass
5454
5555
5656@hookspec
57- def pylsp_document_highlight (config , workspace , document , position ):
57+ def pylsp_document_highlight (config , workspace , document , position ) -> None :
5858 pass
5959
6060
6161@hookspec
62- def pylsp_document_symbols (config , workspace , document ):
62+ def pylsp_document_symbols (config , workspace , document ) -> None :
6363 pass
6464
6565
6666@hookspec (firstresult = True )
67- def pylsp_execute_command (config , workspace , command , arguments ):
67+ def pylsp_execute_command (config , workspace , command , arguments ) -> None :
6868 pass
6969
7070
7171@hookspec
72- def pylsp_experimental_capabilities (config , workspace ):
72+ def pylsp_experimental_capabilities (config , workspace ) -> None :
7373 pass
7474
7575
7676@hookspec
77- def pylsp_folding_range (config , workspace , document ):
77+ def pylsp_folding_range (config , workspace , document ) -> None :
7878 pass
7979
8080
8181@hookspec (firstresult = True )
82- def pylsp_format_document (config , workspace , document , options ):
82+ def pylsp_format_document (config , workspace , document , options ) -> None :
8383 pass
8484
8585
8686@hookspec (firstresult = True )
87- def pylsp_format_range (config , workspace , document , range , options ):
87+ def pylsp_format_range (config , workspace , document , range , options ) -> None :
8888 pass
8989
9090
9191@hookspec (firstresult = True )
92- def pylsp_hover (config , workspace , document , position ):
92+ def pylsp_hover (config , workspace , document , position ) -> None :
9393 pass
9494
9595
9696@hookspec
97- def pylsp_initialize (config , workspace ):
97+ def pylsp_initialize (config , workspace ) -> None :
9898 pass
9999
100100
101101@hookspec
102- def pylsp_initialized ():
102+ def pylsp_initialized () -> None :
103103 pass
104104
105105
106106@hookspec
107- def pylsp_lint (config , workspace , document , is_saved ):
107+ def pylsp_lint (config , workspace , document , is_saved ) -> None :
108108 pass
109109
110110
111111@hookspec
112- def pylsp_references (config , workspace , document , position , exclude_declaration ):
112+ def pylsp_references (
113+ config , workspace , document , position , exclude_declaration
114+ ) -> None :
113115 pass
114116
115117
116118@hookspec (firstresult = True )
117- def pylsp_rename (config , workspace , document , position , new_name ):
119+ def pylsp_rename (config , workspace , document , position , new_name ) -> None :
118120 pass
119121
120122
121123@hookspec
122- def pylsp_settings (config ):
124+ def pylsp_settings (config ) -> None :
123125 pass
124126
125127
126128@hookspec (firstresult = True )
127- def pylsp_signature_help (config , workspace , document , position ):
129+ def pylsp_signature_help (config , workspace , document , position ) -> None :
128130 pass
129131
130132
131133@hookspec
132- def pylsp_workspace_configuration_changed (config , workspace ):
134+ def pylsp_workspace_configuration_changed (config , workspace ) -> None :
133135 pass
0 commit comments