Skip to content

Commit a2bab22

Browse files
fix: add note about distribution in correct place
1 parent 86e2645 commit a2bab22

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/dynamic_foraging_processing/processing/models/trial_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class TrialConfig(BaseModel):
8787
# --- delay_duration ---
8888
delay_beta: Optional[float] = Field(
8989
default=None,
90-
description="The beta of exponential distribution to generate the delay duration(s)",
90+
description="The beta of exponential distribution to generate the delay duration(s). Can be none depending on distribution type (scalar for example)",
9191
)
9292
delay_min: Optional[float] = Field(
9393
default=None, description="The minimum duration(s) allowed for each delay"
@@ -102,7 +102,7 @@ class TrialConfig(BaseModel):
102102
# --- ITI_duration ---
103103
ITI_beta: Optional[float] = Field(
104104
default=None,
105-
description="The beta of exponential distribution to generate the ITI duration(s). Can be none depending on distribution type (scalar for example)",
105+
description="The beta of exponential distribution to generate the ITI duration(s).",
106106
)
107107
ITI_min: Optional[float] = Field(
108108
default=None, description="The minimum duration(s) allowed for each ITI"

0 commit comments

Comments
 (0)