From 43679ebd1e501c8834138d19612139326fafa4fd Mon Sep 17 00:00:00 2001 From: Chris Guo Date: Wed, 8 Jan 2020 00:09:25 +0800 Subject: [PATCH] fix: fix example input error --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c130f29..43ebdfa 100644 --- a/README.md +++ b/README.md @@ -3097,11 +3097,12 @@ class A(object): **Output:** ```py +>>> A().__variable Traceback (most recent call last): File "", line 1, in AttributeError: 'A' object has no attribute '__variable' ->>> >>> A().some_func() +>>> A().some_func() 'Some value' ```