MyClass2

class package_helper_test_2022_01_18_17h12.MyClass2(a: float, b: float)[source]

A whatever-you-are-doing.

Parameters
  • a (float) – The a of the system.

  • b (float) – The b of the system.

Examples

>>> my_object = MyClass2(a = 5, b = 3)
addition() float[source]

Add a and b.

Returns

The sum of a and b.

Return type

Float

Examples

>>> my_object = MyClass2(a=5, b=3)
>>> my_object.addition()
8