Skip to content

Commit 7e8fc6c

Browse files
authored
Make default for include_function_objects false (#274)
1 parent f0ea2ad commit 7e8fc6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylsp/plugins/jedi_completion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def pylsp_completions(config, document, position):
5757

5858
should_include_params = settings.get('include_params')
5959
should_include_class_objects = settings.get('include_class_objects', True)
60-
should_include_function_objects = settings.get('include_function_objects', True)
60+
should_include_function_objects = settings.get('include_function_objects', False)
6161

6262
max_to_resolve = settings.get('resolve_at_most', 25)
6363
modules_to_cache_for = settings.get('cache_for', None)

0 commit comments

Comments
 (0)