Skip to content

Commit

Permalink
fixed use_vr parameter to be set to False by default for existing exp…
Browse files Browse the repository at this point in the history
…eriments.
  • Loading branch information
pellet committed Jul 22, 2023
1 parent 4ef6667 commit cef2991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eegnb/experiments/Experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

class BaseExperiment:

def __init__(self, exp_name, duration, eeg, save_fn, n_trials: int, iti: float, soa: float, jitter: float, use_vr: bool):
def __init__(self, exp_name, duration, eeg, save_fn, n_trials: int, iti: float, soa: float, jitter: float, use_vr=False):
""" Initializer for the Base Experiment Class
Args:
Expand Down

0 comments on commit cef2991

Please sign in to comment.