rubisco-sfa / ILAMB

Python software used in the International Land Model Benchmarking (ILAMB) project
BSD 3-Clause "New" or "Revised" License
46 stars 37 forks source link

Suppress warning related to string comparison #84

Closed colligant closed 11 months ago

colligant commented 11 months ago

Check for the empty string with != "" instead of is not "". This is the correct syntax for python equality comparison. Current is not is doing identity comparison and emits a warning.

nocollier commented 11 months ago

Thank you!