fix: fix example input error

This commit is contained in:
Chris Guo 2020-01-08 00:09:25 +08:00
parent 0d65c00bb6
commit 43679ebd1e
1 changed files with 2 additions and 1 deletions

3
README.md vendored
View File

@ -3097,11 +3097,12 @@ class A(object):
**Output:**
```py
>>> A().__variable
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'A' object has no attribute '__variable'
>>> >>> A().some_func()
>>> A().some_func()
'Some value'
```