Skip to content

Commit

Permalink
[core-api][experimental] direct resource passing
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenKephart committed Dec 31, 2024
1 parent 7a9da34 commit dc7528f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion python_modules/dagster/dagster/_core/definitions/assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,6 @@ def __call__(self, *args: object, **kwargs: object) -> object:
return direct_invocation_result(self, *args, **kwargs)

@public
@experimental_param(param="resource_defs")
@staticmethod
def from_graph(
graph_def: "GraphDefinition",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,6 @@ def _validate_hidden_non_argument_dep_param(
return non_argument_deps


@experimental_param(param="resource_defs")
@experimental_param(param="io_manager_def")
@experimental_param(param="backfill_policy")
@hidden_param(
param="non_argument_deps",
Expand Down Expand Up @@ -528,7 +526,6 @@ def create_assets_def_from_fn_and_decorator_args(
return builder.create_assets_definition()


@experimental_param(param="resource_defs")
@hidden_param(
param="non_argument_deps",
breaking_version="2.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,6 @@ def fn(context: OpExecutionContext) -> Output[None]:
return DecoratedOpFunction(fn)


@experimental_param(param="resource_defs")
@experimental_param(param="io_manager_def")
@experimental_param(param="freshness_policy")
@deprecated(
breaking_version="2.0.0",
Expand Down

0 comments on commit dc7528f

Please sign in to comment.