From 874e930bd6dbd92e64412e1bdb46a4053587c86d Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Thu, 11 Oct 2018 11:35:05 -0400 Subject: [PATCH] Remove indentation in code blocks in README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1a35a00..1ec5c08 100644 --- a/README.md +++ b/README.md @@ -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: -``` - pip install boltons +```bash +pip install boltons ``` Then, [thanks to PyPI][boltons_pypi], dozens of boltons are just an import away: ```python - from boltons.cacheutils import LRU - my_cache = LRU() +from boltons.cacheutils import LRU +my_cache = LRU() ``` However, due to the nature of utilities, application developers might