Skip to content

Commit 4e9de6a

Browse files
committed
fix bug with ignored CAS
1 parent 5c29851 commit 4e9de6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

thermosteam/_chemical.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ def __new__(cls, ID, cache=None, *, search_ID=None,
553553
except LookupError as error:
554554
# Try BioSTEAM
555555
self = search_biorefinery_chemicals(search_ID, error)
556-
if CAS is not None: self._CAS = CAS
556+
if CAS is not None: self._CAS = CAS
557557
elif db in ('biosteam', 'thermosteam'):
558558
self = search_biorefinery_chemicals(search_ID)
559559
if CAS is not None: self._CAS = CAS

0 commit comments

Comments
 (0)