In the following case, the `__init__` method of `Super` calls the `set_up` method that is overriden by `Sub`.
-This results in `Sun.set_up` being called with a partially initialized instance of `Super` which may be unexpected.
-
In the following case, the initialization methods are separate between the superclass and the subclass. +This results in `Sun.set_up` being called with a partially initialized instance of `Super` which may be unexpected.
+In the following case, the initialization methods are separate between the superclass and the subclass.
+