example_package.thecode.AClass
- class example_package.thecode.AClass(*args)
Bases:
object- __init__(*args) None
Methods
__init__(*args)Does some action and can be publically called
another_function(arg1)Another function that multiplies by 2
function3(arg1)_summary_
- a_public_function() bool
Does some action and can be publically called
- Returns:
bool: always return True
- another_function(arg1: int) int
Another function that multiplies by 2
- Args:
arg1 (int): Input value
- Returns:
int: arg1 * 2
- function3(arg1: int) int
_summary_
- Parameters
arg1 (int) – _description_
- Returns
_description_
- Return type
int