Thanks to visit codestin.com Credit goes to github.com
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 7411ff9 commit 3454e35Copy full SHA for 3454e35
1 file changed
lib/parse/payloads.py
@@ -20,13 +20,13 @@ def cleanupVals(text, tag):
20
text = text.split(',')
21
22
if isinstance(text, basestring):
23
- text = int(text) if text.isdigit() else str(text)
+ text = int(text) if text.isdigit() else text
24
25
elif isinstance(text, list):
26
count = 0
27
28
for _ in text:
29
- text[count] = int(_) if _.isdigit() else str(_)
+ text[count] = int(_) if _.isdigit() else _
30
count += 1
31
32
if len(text) == 1 and tag not in ("clause", "where"):
0 commit comments