From 07ace6f29aaa8f67386417e03fe67bd089ddd424 Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Tue, 13 Mar 2012 00:10:22 -0700 Subject: [PATCH] lead in to command --- docs/writing/style.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/writing/style.rst b/docs/writing/style.rst index e1e713d..c918874 100644 --- a/docs/writing/style.rst +++ b/docs/writing/style.rst @@ -53,14 +53,15 @@ PEP 8 is the de-facto code style guide for Python. Conforming your Python code to PEP 8 is generally a good idea and helps make code more consistent when working on projects with other developers. There exists a command-line program, `pep8 `_, -that can check your code for conformance. +that can check your code for conformance. Install it by running the following +command in your Terminal: :: $ pip install pep8 -Simply run it on a file or series of files to get a report of any violations. +Then run it on a file or series of files to get a report of any violations. ::