We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f2cf44 commit b489d28Copy full SHA for b489d28
CHANGELOG
@@ -1,5 +1,5 @@
1
0.5.6
2
- - maintenance release
+ - fix: IndexError when editing the fitting range
3
0.5.5
4
- maintenance release
5
0.5.4
pyjibe/head/infdoublespinbox.py
@@ -56,7 +56,7 @@ def convert_string_to_float(string):
56
val = float(string)
57
except ValueError:
58
string = string.strip()
59
- if string[0] == "-":
+ if string.startswith("-"):
60
asign = -1
61
else:
62
asign = 1
0 commit comments