eeg_checkset_strict_mode#
- eeg_checkset_strict_mode(enabled)#
Context manager to control strict mode for eeg_checkset.
Args#
- enabled (bool): If True, exceptions will propagate (strict mode).
If False, exceptions will be caught and handled gracefully.
- Usage:
- with strict_mode(False):
EEG = eeg_checkset(EEG) # Will catch and handle exceptions
- Parameters:
enabled (bool)