From e83837891da7edcc3c59464dfad5ba46ec24210a Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Tue, 9 Apr 2019 21:44:33 +0300 Subject: [PATCH] README fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 28e5bdf..d59ddac 100644 --- a/README.md +++ b/README.md @@ -201,8 +201,8 @@ If you really need to import a specific entity, consider prefixing it with an un scope leakage, unless you really want it to be externally visible. ```python -from . import data_type # Good -from .data_type import CompositeType # Pls no +from . import data_type # Good +from .data_type import CompositeType # Pls no ``` ### Writing tests