Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

solve issue Floats don't work in the python implementation. #646 #654

Merged
merged 1 commit into from
Aug 6, 2024

Conversation

jero98772
Copy link
Contributor

the error was because it is not converted to float change the line 34
from
elif re.match(float_re, token): return int(token)
to
elif re.match(float_re, token): return float(token)

@kanaka kanaka merged commit e2d2504 into kanaka:master Aug 6, 2024
2 of 4 checks passed
@kanaka
Copy link
Owner

kanaka commented Aug 6, 2024

Thanks for catching that!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants