When converting a string into a subset, it transforms to `float` while it should be `int`: ```python >>> from rbool import * >>> from_any("{-5, 3}") {-5.0, 3.0} ``` Expected behaviour ```python >>> from rbool import * >>> from_any("{-5, 3}") {-5, 3} ```
When converting a string into a subset, it transforms to
floatwhile it should beint:Expected behaviour