10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-25 22:52:15 +02:00

true -> True for the convention

This commit is contained in:
Thomas Applencourt 2015-04-13 09:51:36 +02:00
parent db30bb8ec4
commit 92ce14a9b0
4 changed files with 5 additions and 5 deletions

View File

@ -70,9 +70,9 @@ def is_bool(str_):
Take a string, if is a bool return the conversion into
fortran and ocaml.
"""
if str_.lower() in ['true', '.true.']:
if "true" in str_.lower():
return Type(None, "true", ".True.")
elif str_.lower() in ['false', '.false.']:
elif "false" in str_.lower():
return Type(None, "false", ".False")
else:
raise TypeError

View File

@ -8,7 +8,7 @@ default: 10000
type: logical
doc: If true, compute the PT2 at the end of the selection
interface: input
default: true
default: True
[PT2_max]
type: PT2_energy

View File

@ -8,7 +8,7 @@ default: 10000
type: logical
doc: If true, compute the PT2 at the end of the selection
interface: input
default: true
default: True
[PT2_max]
type: PT2_energy

View File

@ -14,7 +14,7 @@ default: 10000
type: logical
doc: If true, compute the PT2 at the end of the selection
interface: input
default: true
default: True
[PT2_max]
type: PT2_energy