Merge pull request #168 from chrisguox/update-docs

Fixed example input error
This commit is contained in:
Satwik Kansal 2020-01-09 14:50:47 +05:30 committed by GitHub
commit 3e98cf1ceb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'
```