Skip to content

Commit c9d51b7

Browse files
authored
Merge pull request #17 from joshua-janicas/feature/PydanticUpdateFixes
Pydantic Updates
2 parents 974532f + a44177a commit c9d51b7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

meltano/edk/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Command(BaseModel):
1616
class ExtensionCommand(Command):
1717
"""Describes an extension command."""
1818

19-
description = "The extension cli"
19+
description: str = "The extension cli"
2020
pass_through_cli: bool = False
2121
commands: List[str] = [
2222
"describe",
@@ -30,7 +30,7 @@ class ExtensionCommand(Command):
3030
class InvokerCommand(Command):
3131
"""Describes an invoker style command."""
3232

33-
description = "The pass through invoker cli"
33+
description: str = "The pass through invoker cli"
3434
pass_through_cli: bool = True
3535
commands: List[str] = [":splat"]
3636

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dagster-ext"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "`dagster-ext` is a Meltano utility extension."
55
authors = ["Jules Huisman"]
66
license = "Apache 2.0"

0 commit comments

Comments
 (0)