mirror of https://github.com/mahmoud/boltons.git
Remove indentation in code blocks in README
This commit is contained in:
parent
d689c7ceef
commit
874e930bd6
|
@ -53,15 +53,15 @@ Boltons is tested against Python 2.6, 2.7, 3.3, 3.4, 3.5, 3.6,
|
||||||
|
|
||||||
Boltons can be added to a project in a few ways. There's the obvious one:
|
Boltons can be added to a project in a few ways. There's the obvious one:
|
||||||
|
|
||||||
```
|
```bash
|
||||||
pip install boltons
|
pip install boltons
|
||||||
```
|
```
|
||||||
|
|
||||||
Then, [thanks to PyPI][boltons_pypi], dozens of boltons are just an import away:
|
Then, [thanks to PyPI][boltons_pypi], dozens of boltons are just an import away:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
from boltons.cacheutils import LRU
|
from boltons.cacheutils import LRU
|
||||||
my_cache = LRU()
|
my_cache = LRU()
|
||||||
```
|
```
|
||||||
|
|
||||||
However, due to the nature of utilities, application developers might
|
However, due to the nature of utilities, application developers might
|
||||||
|
|
Loading…
Reference in New Issue