Skip to content

Commit a5ebfdd

Browse files
authoredFeb 11, 2022
Update single quotes to double quotes for install command examples (#163)
1 parent 6042dab commit a5ebfdd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ If the respective dependencies are found, the following optional providers will
2525
Optional providers can be installed using the `extras` syntax. To install [YAPF](https://github.com/google/yapf) formatting for example:
2626

2727
```
28-
pip install 'python-lsp-server[yapf]'
28+
pip install "python-lsp-server[yapf]"
2929
```
3030

3131
All optional providers can be installed using:
3232

3333
```
34-
pip install 'python-lsp-server[all]'
34+
pip install "python-lsp-server[all]"
3535
```
3636

3737
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
9191
To run the test suite:
9292

9393
```sh
94-
pip install '.[test]' && pytest
94+
pip install ".[test]" && pytest
9595
```
9696

9797
After adding configuration options to `schema.json`, refresh the `CONFIGURATION.md` file with

0 commit comments

Comments
 (0)
Please sign in to comment.