diff --git a/python_modules/dagster/dagster/_core/definitions/asset_selection.py b/python_modules/dagster/dagster/_core/definitions/asset_selection.py index e4b0d4630b670..eebb4f5c25cac 100644 --- a/python_modules/dagster/dagster/_core/definitions/asset_selection.py +++ b/python_modules/dagster/dagster/_core/definitions/asset_selection.py @@ -8,7 +8,7 @@ from typing_extensions import TypeAlias, TypeGuard import dagster._check as check -from dagster._annotations import deprecated, experimental, experimental_param, public +from dagster._annotations import deprecated, experimental_param, public from dagster._core.definitions.asset_check_spec import AssetCheckKey from dagster._core.definitions.asset_graph import AssetGraph from dagster._core.definitions.asset_key import ( @@ -241,7 +241,7 @@ def groups(*group_strs, include_sources: bool = False) -> "GroupsAssetSelection" @public @staticmethod - @experimental + @experimental_param(param="include_sources") def tag(key: str, value: str, include_sources: bool = False) -> "AssetSelection": """Returns a selection that includes materializable assets that have the provided tag, and all the asset checks that target them.