mytoolbox.mymodule1.myClass1

class myClass1(arg1, arg2)[source]

Bases: object

This is a base class.

Parameters

Methods

myMethod1

This is the first public method.

myMethod2

This is the second public method.

Attributes

myAttribute

This is a public attribute.

__call__(arg)[source]

This class is callable.

Parameters

arg (int) – Pass one of these in.

Return type

str

Returns

Get one of these out.

property myAttribute

This is a public attribute.

Return type

int

myMethod1(arg)[source]

This is the first public method.

Parameters

arg (~T) – Pass a myTypeVar in.

Return type

str

Returns

Get one of these out.

myMethod2()[source]

This is the second public method.

Return type

str