Closed rmadupuri closed 1 month ago
The current check if (value[0] in ('>','<')) and value[1:].isdigit(): throws an error if the values are floats. This PR fixes that.
if (value[0] in ('>','<')) and value[1:].isdigit():
The current check
if (value[0] in ('>','<')) and value[1:].isdigit():
throws an error if the values are floats. This PR fixes that.