diff --git a/python_modules/dagster/dagster/_core/definitions/asset_selection.py b/python_modules/dagster/dagster/_core/definitions/asset_selection.py index 793ee7eefc780..085c5ed868716 100644 --- a/python_modules/dagster/dagster/_core/definitions/asset_selection.py +++ b/python_modules/dagster/dagster/_core/definitions/asset_selection.py @@ -7,7 +7,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 ( @@ -240,7 +240,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.