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' ```