mytoolbox.mysubpackage.mymodule3.myClass3¶
-
class
mytoolbox.mysubpackage.mymodule3.
myClass3
(arg1: Union[List[str], Tuple[int, int]], arg2: str)¶ Bases:
mytoolbox.mymodule1.myClass1
This is the third class.
Methods
This is the first public method.
This is the second public method.
Attributes
This is a public attribute.
-
__call__
(arg: int) → str¶ This class is callable.
- Parameters
arg – Pass one of these in.
- Returns
Get one of these out.
-
property
myAttribute
¶ This is a public attribute.
-
myMethod1
(arg: T) → str¶ This is the first public method.
- Parameters
arg – Pass a
myTypeVar
in.- Returns
Get one of these out.
-
myMethod2
() → str¶ This is the second public method.
-