From ee984b3baf1756daf00382158902bbf44ed80efc Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Mon, 2 Dec 2024 17:49:17 +0000 Subject: [PATCH] Drop unused ``EmbeddedLink`` type It generates this warning when building the docs: ``` WARNING: invalid signature for autoattribute ('gxformat2.model::EmbeddedLink.$link') [autodoc] WARNING: don't know which module to import for autodocumenting 'gxformat2.model::EmbeddedLink.$link' (try placing a "module" or "currentmodule" directive in the document, or giving an explicit module name) [autodoc] ``` --- gxformat2/model.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/gxformat2/model.py b/gxformat2/model.py index 241ec67..0dc22fa 100644 --- a/gxformat2/model.py +++ b/gxformat2/model.py @@ -10,10 +10,7 @@ Union, ) -from typing_extensions import ( - Literal, - TypedDict, -) +from typing_extensions import Literal log = logging.getLogger(__name__) @@ -21,8 +18,6 @@ ConnectDict = dict -EmbeddedLink = TypedDict("EmbeddedLink", {"$link": str}) - NativeGalaxyStepType = Literal[ "subworkflow", "data_input",