Skip to content

Commit

Permalink
Drop unused EmbeddedLink type
Browse files Browse the repository at this point in the history
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]
```
  • Loading branch information
nsoranzo committed Dec 2, 2024
1 parent 4b6272e commit ee984b3
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions gxformat2/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,14 @@
Union,
)

from typing_extensions import (
Literal,
TypedDict,
)
from typing_extensions import Literal

log = logging.getLogger(__name__)

DictOrList = Union[Dict, List]
ConnectDict = dict


EmbeddedLink = TypedDict("EmbeddedLink", {"$link": str})

NativeGalaxyStepType = Literal[
"subworkflow",
"data_input",
Expand Down

0 comments on commit ee984b3

Please sign in to comment.