Skip to content

Commit 996761b

Browse files
committed
add experimental decorator
1 parent 915ea7a commit 996761b

File tree

1 file changed

+2
-1
lines changed
  • python_modules/dagster/dagster/_config/pythonic_config

1 file changed

+2
-1
lines changed

python_modules/dagster/dagster/_config/pythonic_config/resource.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
import dagster._check as check
2121
from dagster import Field as DagsterField
22-
from dagster._annotations import deprecated
22+
from dagster._annotations import deprecated, experimental
2323
from dagster._config.field_utils import config_dictionary_from_values
2424
from dagster._config.pythonic_config.attach_other_object_to_context import (
2525
IAttachDifferentObjectToOpContext as IAttachDifferentObjectToOpContext,
@@ -331,6 +331,7 @@ def configure_at_launch(cls: "type[T_Self]", **kwargs) -> "PartialResource[T_Sel
331331
"""
332332
return PartialResource(cls, data=kwargs)
333333

334+
@experimental
334335
@classmethod
335336
def partial(cls: "type[T_Self]", **kwargs) -> "PartialResource[T_Self]":
336337
"""Returns a partially initialized copy of the resource, with remaining config fields

0 commit comments

Comments
 (0)