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 6069ee8 commit c41bb31Copy full SHA for c41bb31
defs/common.py
@@ -20,7 +20,7 @@ def strtoint(val : str) -> int:
20
if isinstance(val, int): #is already int.
21
return val
22
23
- val = val.lower()
+ val = val.lower().strip()
24
25
if val and val[0] == 'x':
26
val = val[1:]
0 commit comments