SafeManagement#

class normtest.utils.helpers.SafeManagement(safe=True, **kwargs)[source]#

Instanciates a class for safe management. It is primarily for internal use.

Parameters:
safebool, optional

Whether to check the inputs before performing the calculations (True, default) or not (False). Useful for beginners to identify problems in data entry (may reduce algorithm execution time);

get_safe()[source]#

Returns the current status of parameter safe

Returns:
safebool, optional

Whether to check the inputs before performing the calculations (True, default) or not (False). Useful for beginners to identify problems in data entry (may reduce algorithm execution time);

set_safe(safe)[source]#

Changes the current status of parameter safe

Parameters:
safebool, optional

Whether to check the inputs before performing the calculations (True, default) or not (False). Useful for beginners to identify problems in data entry (may reduce algorithm execution time);