Skip to content

Commit 435a189

Browse files
committed
add trial_selection to Passive table
1 parent 5ec0dd7 commit 435a189

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/ethopy/experiments/passive.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@ class Passive(dj.Part):
1111
# Passive experiment conditions
1212
-> Condition
1313
---
14+
trial_selection='staircase' : enum('fixed','block','random','staircase', 'biased')
15+
1416
intertrial_duration : int
1517
"""
1618

1719

1820
class Experiment(State, ExperimentClass):
1921
cond_tables = ["Passive"]
20-
default_key = {"trial_selection": "fixed", "intertrial_duration": 100, "difficulty": 0}
22+
default_key = {"trial_selection": "fixed",
23+
"intertrial_duration": 100,
24+
"difficulty": 0}
2125

2226
def entry(
2327
self,

0 commit comments

Comments
 (0)