Skip to content

Commit

Permalink
Annotate with str, for pydantic
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-janicas committed Jan 6, 2025
1 parent 974532f commit a44177a
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 a44177a

Please sign in to comment.