main module

main.dosomething(a, b)

The dosomething function can do something with the numbers. In this case, I’m just adding them.

Parameters
  • a (Not specified (not None)) – The first parameter

  • b (Not specified (not None)) – The second parameter

Raises

ValueError – ValueError if a or b are None

Returns

Returns a+b

Return type

Determined by the type of the sum of the parameters