Skip to content

Commit 3e98cf1

Browse files
authored
Merge pull request satwikkansal#168 from chrisguox/update-docs
Fixed example input error
2 parents 0d65c00 + 43679eb commit 3e98cf1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3097,11 +3097,12 @@ class A(object):
30973097
30983098
**Output:**
30993099
```py
3100+
>>> A().__variable
31003101
Traceback (most recent call last):
31013102
File "<stdin>", line 1, in <module>
31023103
AttributeError: 'A' object has no attribute '__variable'
31033104
3104-
>>> >>> A().some_func()
3105+
>>> A().some_func()
31053106
'Some value'
31063107
```
31073108

0 commit comments

Comments
 (0)