From 2c7708b73957e8cdbf4675749124bab1ce1cedab Mon Sep 17 00:00:00 2001 From: lukpueh Date: Tue, 1 Dec 2020 10:25:47 +0100 Subject: [PATCH] Update python.md Co-authored-by: Marina Moore --- python.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python.md b/python.md index 360e730..766359e 100644 --- a/python.md +++ b/python.md @@ -2,7 +2,7 @@ There are many excellent Python style guides out there, usually based on [PEP 8](https://www.python.org/dev/peps/pep-0008/) -- the mother of all Python style -guides. Following the principle of reuse, we recommend an existing guides that +guides. Following the principle of reuse, we recommend an existing guide that we find suitable, and only add a few refinements and accentuation to it. In short: @@ -213,4 +213,3 @@ Write 90% tests. The test should make sure that it will catch 90% of the potential problems with the function. Avoid writing 50% tests (that only check a common case or two) and avoid writing 99.9% tests because it will consume too much of your time. -