summaryrefslogtreecommitdiff
path: root/tests/pyreverse/functional/class_diagrams/inheritance/simple_inheritance.py
blob: b5577d856a2fa034d6f29bb5341e68bf6a084089 (plain)
1
2
3
4
5
6
class Parent:
    """parent class"""


class Child(Parent):
    """child class"""