Skip to content

Commit

Permalink
add missing default argument to kwargs in depends on
Browse files Browse the repository at this point in the history
  • Loading branch information
pLeminoq committed Dec 13, 2024
1 parent e32ccef commit 891f085
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "widget_state"
version = "0.0.4"
version = "0.0.5"
authors = [
{ name="Tamino Huxohl", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion widget_state/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def depends_on(
self,
states: Iterable[State],
compute_value: Callable[[], Self],
kwargs: dict[State, dict[str, Any]],
kwargs: dict[State, dict[str, Any]] = {},
) -> None:
"""
Declare that this state depends on other states.
Expand Down

0 comments on commit 891f085

Please sign in to comment.