File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ If the respective dependencies are found, the following optional providers will
25
25
Optional providers can be installed using the ` extras ` syntax. To install [ YAPF] ( https://github.com/google/yapf ) formatting for example:
26
26
27
27
```
28
- pip install ' python-lsp-server[yapf]'
28
+ pip install " python-lsp-server[yapf]"
29
29
```
30
30
31
31
All optional providers can be installed using:
32
32
33
33
```
34
- pip install ' python-lsp-server[all]'
34
+ pip install " python-lsp-server[all]"
35
35
```
36
36
37
37
If you get an error similar to ` 'install_requires' must be a string or list of strings ` then please upgrade setuptools before trying again.
@@ -91,7 +91,7 @@ All configuration options are described in [`CONFIGURATION.md`](https://github.c
91
91
To run the test suite:
92
92
93
93
``` sh
94
- pip install ' .[test]' && pytest
94
+ pip install " .[test]" && pytest
95
95
```
96
96
97
97
After adding configuration options to ` schema.json ` , refresh the ` CONFIGURATION.md ` file with
You can’t perform that action at this time.
0 commit comments