Closed colligant closed 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.
is not ""
is not
Thank you!
Check for the empty string with != "" instead of
is not ""
. This is the correct syntax for python equality comparison. Currentis not
is doing identity comparison and emits a warning.