10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-18 11:15:28 +02:00

Try to solve the 'Bool.of_string: expected true or false but got True'

This commit is contained in:
Thomas Applencourt 2015-04-16 13:35:29 +02:00
parent d71be0bb7c
commit 74c9e03e2a

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 "true" in str_.lower():
if "true" in str_.stirp().lower():
return Type(None, "true", ".True.")
elif "false" in str_.lower():
elif "false" in str_.stirp().lower():
return Type(None, "false", ".False")
else:
raise TypeError