summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2019-12-24 23:53:22 -0800
committerTimothy Crosley <timothy.crosley@gmail.com>2019-12-24 23:53:22 -0800
commit297ec8aa09a6930d290e4cb5902c29cbc9123555 (patch)
treec6274ebc6e6591835215a5edefd246982dc5546c
parent5701bfd7e876132ec7c79bd6ec1f5c9d0203dcb7 (diff)
downloadisort-297ec8aa09a6930d290e4cb5902c29cbc9123555.tar.gz
Fix example to match new behaviour
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index b6d5cb78..183aec72 100644
--- a/README.md
+++ b/README.md
@@ -43,8 +43,6 @@ Before isort:
```python
from my_lib import Object
-print("Hey")
-
import os
from my_lib import Object3
@@ -61,6 +59,7 @@ from __future__ import absolute_import
from third_party import lib3
+print("Hey")
print("yo")
```