Source code for mytoolbox.mysubpackage.mymodule3

"""
Module containing a third class.
"""
from mytoolbox.mymodule1 import myClass1


[docs]class myClass3(myClass1): """This is the third class.""" pass