You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the inheritance example. The important parts are commented in the source code. The main differences can be achieved by letting the inheritance-class struct inherit the base-class struct. The base-class type must also be to the inheritance-class type block (there is an argument).
5
+
6
+
# Example
7
+
8
+
```python
9
+
from my_module import BaseClass
10
+
bc = BaseClass()
11
+
inh = InheritanceClass()
12
+
13
+
## Use a base class function. It just returns the arguments.
0 commit comments