Skip to content

Commit

Permalink
[components] fix broken import in scaffold template (#26737)
Browse files Browse the repository at this point in the history
## Summary & Motivation

Fix broken import not caught by lint because it's in a template.

## How I Tested These Changes

BK
  • Loading branch information
smackesey authored Dec 27, 2024
1 parent 78c3c38 commit 8c4f449
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
from dagster import Definitions
from dagster_components import (
Component,
ComponentRegistry,
ComponentLoadContext,
component,
component_type,
)

@component(name="{{ name }}")
@component_type(name="{{ name }}")
class {{ component_type_class_name }}(Component):

@classmethod
Expand Down

0 comments on commit 8c4f449

Please sign in to comment.