Skip to content

Commit

Permalink
Merge pull request #17 from joshua-janicas/feature/PydanticUpdateFixes
Browse files Browse the repository at this point in the history
Pydantic Updates
  • Loading branch information
JulesHuisman authored Jan 8, 2025
2 parents 974532f + a44177a commit c9d51b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions meltano/edk/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Command(BaseModel):
class ExtensionCommand(Command):
"""Describes an extension command."""

description = "The extension cli"
description: str = "The extension cli"
pass_through_cli: bool = False
commands: List[str] = [
"describe",
Expand All @@ -30,7 +30,7 @@ class ExtensionCommand(Command):
class InvokerCommand(Command):
"""Describes an invoker style command."""

description = "The pass through invoker cli"
description: str = "The pass through invoker cli"
pass_through_cli: bool = True
commands: List[str] = [":splat"]

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-ext"
version = "0.1.2"
version = "0.1.3"
description = "`dagster-ext` is a Meltano utility extension."
authors = ["Jules Huisman"]
license = "Apache 2.0"
Expand Down

0 comments on commit c9d51b7

Please sign in to comment.