Skip to content

Commit

Permalink
Bug fix in scripts/metavar.py: use correct boolean default value 'Fal…
Browse files Browse the repository at this point in the history
…se' for optional var prop 'polymorphic'
  • Loading branch information
climbfuji committed Oct 17, 2023
1 parent 163c397 commit 294eecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/metavar.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class Var:
VariableProperty('active', str, optional_in=True,
default_in='.true.'),
VariableProperty('polymorphic', bool, optional_in=True,
default_in='.false.')]
default_in=False)]

# XXgoldyXX: v debug only
__to_add = VariableProperty('valid_values', str,
Expand Down

0 comments on commit 294eecf

Please sign in to comment.