Skip to content

Commit 703a974

Browse files
committed
Update task.py
1 parent 9028d40 commit 703a974

File tree

1 file changed

+2
-2
lines changed
  • iblrig_custom_tasks/samuel_tonotopicMapping

1 file changed

+2
-2
lines changed

iblrig_custom_tasks/samuel_tonotopicMapping/task.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ def __init__(self, *args, **kwargs):
3030
)
3131
Session.frequencies = np.round(self.frequencies).astype(int)
3232

33-
# calculate repetitions per state machine run (253 states max)
33+
# calculate repetitions per state machine run (255 states max)
3434
self.repetitions = []
35-
max_reps_per_trial = 253 // self.n_frequencies
35+
max_reps_per_trial = 255 // self.n_frequencies
3636
reps_remaining = self.task_params['n_reps_per_freq']
3737
while reps_remaining > 0:
3838
self.repetitions.append(min(max_reps_per_trial, reps_remaining))

0 commit comments

Comments
 (0)