From a44177a9698a98d706c1b013344e0fb5060b1f90 Mon Sep 17 00:00:00 2001 From: Joshua Janicas Date: Mon, 6 Jan 2025 14:48:32 -0500 Subject: [PATCH] Annotate with str, for pydantic --- meltano/edk/models.py | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meltano/edk/models.py b/meltano/edk/models.py index d751315..9b85d6f 100644 --- a/meltano/edk/models.py +++ b/meltano/edk/models.py @@ -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", @@ -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"] diff --git a/pyproject.toml b/pyproject.toml index e74ee09..f3fc4dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"