Skip to content

Commit 8d55feb

Browse files
authored
Merge pull request #26 from int-brain-lab/fix-delay_secs
remove delay_secs argument
2 parents 96352fd + 491ff3c commit 8d55feb

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

iblrig_custom_tasks/samuel_cuedBiasedChoiceWorld/task.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Session(BiasedChoiceWorldSession):
1717

1818
protocol_name = 'samuel_cuedBiasedChoiceWorld'
1919

20-
def __init__(self, *args, delay_secs=0, **kwargs):
20+
def __init__(self, *args, **kwargs):
2121
super().__init__(**kwargs)
2222

2323
# loads in the settings in order to determine the main sync and thus the pipeline extractor tasks
@@ -27,7 +27,6 @@ def __init__(self, *args, delay_secs=0, **kwargs):
2727
# Update experiment description which was created by superclass init
2828
next(iter(self.experiment_description['tasks']))['extractors'] = self.extractor_tasks
2929

30-
self.task_params['SESSION_DELAY_START'] = delay_secs
3130
# init behaviour data
3231
self.movement_left = self.device_rotary_encoder.THRESHOLD_EVENTS[
3332
self.task_params.QUIESCENCE_THRESHOLDS[0]]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "project_extraction"
7-
version = "0.5.3"
7+
version = "0.5.4"
88
description = "Custom extractors for satellite tasks"
99
dynamic = [ "readme" ]
1010
keywords = [ "IBL", "neuro-science" ]

0 commit comments

Comments
 (0)