Skip to content

Commit

Permalink
Fix ThoughtSpot Tags model validation (#1064)
Browse files Browse the repository at this point in the history
  • Loading branch information
mars-lan authored Jan 14, 2025
1 parent e2d4deb commit 1397d4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions metaphor/thought_spot/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

class Tag(BaseModel):
name: str
isDeleted: bool
isHidden: bool
isDeprecated: bool
isDeleted: bool = False
isHidden: bool = False
isDeprecated: bool = False


class Header(BaseModel):
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 = "metaphor-connectors"
version = "0.14.174"
version = "0.14.175"
license = "Apache-2.0"
description = "A collection of Python-based 'connectors' that extract metadata from various sources to ingest into the Metaphor app."
authors = ["Metaphor <dev@metaphor.io>"]
Expand Down

0 comments on commit 1397d4e

Please sign in to comment.