Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove delay_secs argument #26

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions iblrig_custom_tasks/samuel_cuedBiasedChoiceWorld/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Session(BiasedChoiceWorldSession):

protocol_name = 'samuel_cuedBiasedChoiceWorld'

def __init__(self, *args, delay_secs=0, **kwargs):
def __init__(self, *args, **kwargs):
super().__init__(**kwargs)

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

self.task_params['SESSION_DELAY_START'] = delay_secs
# init behaviour data
self.movement_left = self.device_rotary_encoder.THRESHOLD_EVENTS[
self.task_params.QUIESCENCE_THRESHOLDS[0]]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "project_extraction"
version = "0.5.3"
version = "0.5.4"
description = "Custom extractors for satellite tasks"
dynamic = [ "readme" ]
keywords = [ "IBL", "neuro-science" ]
Expand Down
Loading