Skip to content

Commit

Permalink
invenio.cfg boolean values bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
mesemus committed Jan 21, 2024
1 parent 33a01ca commit cef4a51
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
@@ -1,6 +1,6 @@
[project]
name = "nrp-devtools"
version = "0.1.9"
version = "0.1.10"
description = "NRP repository development tools"
readme = "README.md"
authors = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def transform_value(x):
if x == 'False':
return False
if x == 'True':
return False
return True
try:
return json.loads(x)
except:
Expand Down

0 comments on commit cef4a51

Please sign in to comment.