Skip to content

Commit

Permalink
fix: use correct yaml type for number
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbuhr committed Aug 29, 2024
1 parent 2235295 commit 0d7a87b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/homolysis/kimmdy-yaml-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@
"description": "For setting values in the arrhenius equation",
"properties": {
"frequency_factor": {
"type": "float",
"type": "number",
"description": "Frequency factor",
"pytype": "float",
"minimum": 0,
"default": 0.288
},
"temperature": {
"type": "float",
"type": "number",
"description": "Temperature",
"pytype": "float",
"minimum": 0,
Expand Down

0 comments on commit 0d7a87b

Please sign in to comment.