Skip to content

Commit

Permalink
fix: exclude some params like args and help on dump - tmp fix while s…
Browse files Browse the repository at this point in the history
…erde stuff is all messed up
  • Loading branch information
robcxyz committed Dec 21, 2024
1 parent 49c8df9 commit 6cf2b8f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tackle/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ class HookBase(BaseModel):
help: str = Field(
None,
description="A string to display when calling with the `help` argument.",
exclude=True,
)
render_by_default: list = Field(
None,
Expand Down Expand Up @@ -167,7 +168,7 @@ class HookBase(BaseModel):
args: list = Field(
[],
description="A list of fields map arguments. See [docs]() for details.",
# exclude=True,
exclude=True,
)
kwargs: str = Field(
None,
Expand Down

0 comments on commit 6cf2b8f

Please sign in to comment.