Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria committed Jan 2, 2024
1 parent e8dd910 commit a908bd2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,6 @@ def op_def(self) -> "OpDefinition":

return cast(OpDefinition, self._op_def)

@public
@property
def has_dagster_type(self) -> bool:
return self._dagster_type is not None

@public
@property
def dagster_type(self) -> "DagsterType":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ def _store_output(
if (
step_output.properties.asset_check_key
or (step_context.output_observes_source_asset(step_output_handle.output_name))
or output_context.dagster_type.is_nothing # TODO - maybe need to scope this to just assets
or output_context.dagster_type.is_nothing
):
yield from _log_asset_materialization_events_for_asset(
step_context=step_context,
Expand Down

0 comments on commit a908bd2

Please sign in to comment.