Source code for allensdk.brain_observatory.behavior.behavior_ophys_session

import warnings

from allensdk.brain_observatory.behavior.behavior_ophys_experiment import \
        BehaviorOphysExperiment as BOE

# alias as BOE prevents someone becoming comfortable with
# import BehaviorOphysExperiment from this to-be-deprecated module

[docs] class BehaviorOphysSession(BOE): def __init__(self, **kwargs): warnings.warn( "allensdk.brain_observatory.behavior.behavior_ophys_session." "BehaviorOphysSession is deprecated. use " "allensdk.brain_observatory.behavior.behavior_ophys_experiment." "BehaviorOphysExperiment.", DeprecationWarning, stacklevel=3) super().__init__(**kwargs)