Skip to content

Commit

Permalink
fix help on option file uploader
Browse files Browse the repository at this point in the history
v0.5.2
  • Loading branch information
devxpy committed Dec 3, 2024
1 parent e26d4cc commit 698045a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion py/gooey_gui/components/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,10 @@ def file_uploader(
)
if optional:
if not checkbox(
label, value=bool(core.session_state.get(key, value)), disabled=disabled
label,
value=bool(core.session_state.get(key, value)),
disabled=disabled,
help=help,
):
core.session_state.pop(key, None)
return None
Expand Down
2 changes: 1 addition & 1 deletion py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gooey-gui"
version = "0.5.1"
version = "0.5.2"
description = ""
authors = ["Dev Aggarwal <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 698045a

Please sign in to comment.