Skip to content

Commit

Permalink
# remove OpExecutionContext type annotation in dagster_op func (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
resulyrt93 authored Oct 10, 2023
1 parent 6f232bb commit 1b3022c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions dagster_meltano/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
In,
Nothing,
OpDefinition,
OpExecutionContext,
Out,
get_dagster_logger,
op,
Expand Down Expand Up @@ -71,14 +70,14 @@ def meltano_command_op(
},
)
def dagster_op(
context: OpExecutionContext,
context,
env: Optional[dict],
) -> str:
"""
Run `meltano run <command>` using a Dagster op.
Args:
context (OpExecutionContext): The Dagster op execution context.
context: The Dagster op execution context.
"""
meltano_resource: MeltanoResource = context.resources.meltano

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dagster-meltano"
version = "1.5.1"
version = "1.5.2"
description = "A dagster plugin that allows you to run your Meltano project inside Dagster."
authors = ["Quantile Development"]
license = "Apache 2.0"
Expand Down

0 comments on commit 1b3022c

Please sign in to comment.