Skip to content

Commit

Permalink
Apply automatic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
trgiangdo authored and github-actions[bot] committed Oct 16, 2023
1 parent e61c490 commit 15f4120
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/taipy/config/config.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,6 @@ class Config:
def tasks(cls) -> Dict[str, TaskConfig]:
""""""

@_Classproperty
def sequences(cls) -> Dict[str, SequenceConfig]:
""""""

@_Classproperty
def scenarios(cls) -> Dict[str, ScenarioConfig]:
""""""
Expand All @@ -187,6 +183,7 @@ class Config:
additional_data_node_configs: Optional[List[DataNodeConfig]] = None,
frequency: Optional[Frequency] = None,
comparators: Optional[Dict[str, Union[List[Callable], Callable]]] = None,
sequences: Optional[Dict[str, List[TaskConfig]]] = None,
**properties,
) -> "ScenarioConfig":
"""Configure a new scenario configuration.
Expand All @@ -208,6 +205,8 @@ class Config:
comparison, each comparator is applied to all the data nodes instantiated from
the data node configuration attached to the comparator. See
`(taipy.)compare_scenarios()^` more more details.
sequences (Optional[Dict[str, List[TaskConfig]]]): Dictionary of sequence descriptions.
The default value is None.
**properties (dict[str, any]): A keyworded variable length list of additional arguments.
Returns:
Expand All @@ -220,6 +219,7 @@ class Config:
additional_data_node_configs: List[DataNodeConfig] = None,
frequency: Optional[Frequency] = None,
comparators: Optional[Dict[str, Union[List[Callable], Callable]]] = None,
sequences: Optional[Dict[str, List[TaskConfig]]] = None,
**properties,
) -> "ScenarioConfig":
"""Set the default values for scenario configurations.
Expand All @@ -244,6 +244,7 @@ class Config:
comparison, each comparator is applied to all the data nodes instantiated from
the data node configuration attached to the comparator. See
`taipy.compare_scenarios()^` more more details.
sequences (Optional[Dict[str, List[TaskConfig]]]): Dictionary of sequences. The default value is None.
**properties (dict[str, any]): A keyworded variable length list of additional arguments.
Returns:
Expand Down

0 comments on commit 15f4120

Please sign in to comment.