Skip to content

Commit

Permalink
Aligns the experimental qualifier in the docstring with the experimen…
Browse files Browse the repository at this point in the history
…tal decorator (#25221)

## Summary & Motivation

Aligns the docstring with the with experimental warning decorator in
some places

## How I Tested These Changes
n/a
  • Loading branch information
marijncv authored Oct 11, 2024
1 parent c8b3fbd commit 7463ec3
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def asset(
code_version (Optional[str]): (Experimental) Version of the code that generates this asset. In
general, versions should be set only for code that deterministically produces the same
output when given the same inputs.
check_specs (Optional[Sequence[AssetCheckSpec]]): (Experimental) Specs for asset checks that
check_specs (Optional[Sequence[AssetCheckSpec]]): Specs for asset checks that
execute in the decorated function after materializing the asset.
non_argument_deps (Optional[Union[Set[AssetKey], Set[str]]]): Deprecated, use deps instead.
Set of asset keys that are upstream dependencies, but do not pass an input to the asset.
Expand Down Expand Up @@ -576,9 +576,9 @@ def multi_asset(
retry_policy (Optional[RetryPolicy]): The retry policy for the op that computes the asset.
code_version (Optional[str]): (Experimental) Version of the code encapsulated by the multi-asset. If set,
this is used as a default code version for all defined assets.
specs (Optional[Sequence[AssetSpec]]): (Experimental) The specifications for the assets materialized
specs (Optional[Sequence[AssetSpec]]): The specifications for the assets materialized
by this function.
check_specs (Optional[Sequence[AssetCheckSpec]]): (Experimental) Specs for asset checks that
check_specs (Optional[Sequence[AssetCheckSpec]]): Specs for asset checks that
execute in the decorated function after materializing the assets.
non_argument_deps (Optional[Union[Set[AssetKey], Set[str]]]): Deprecated, use deps instead.
Set of asset keys that are upstream dependencies, but do not pass an input to the
Expand Down Expand Up @@ -756,9 +756,9 @@ def graph_asset(
compose the asset.
metadata (Optional[RawMetadataMapping]): Dictionary of metadata to be associated with
the asset.
tags (Optional[Mapping[str, str]]): Tags for filtering and organizing. These tags are not
tags (Optional[Mapping[str, str]]): (Experimental) Tags for filtering and organizing. These tags are not
attached to runs of the asset.
owners (Optional[Sequence[str]]): A list of strings representing owners of the asset. Each
owners (Optional[Sequence[str]]): (Experimental) A list of strings representing owners of the asset. Each
string can be a user's email address, or a team name prefixed with `team:`,
e.g. `team:finops`.
freshness_policy (Optional[FreshnessPolicy]): A constraint telling Dagster how often this asset is
Expand Down

0 comments on commit 7463ec3

Please sign in to comment.