Skip to content

Commit 43679eb

Browse files
committed
fix: fix example input error
1 parent 0d65c00 commit 43679eb

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)