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

TypeError: 'float' object cannot be interpreted as an integer #60

Open
xandyxor opened this issue Jan 19, 2021 · 0 comments
Open

TypeError: 'float' object cannot be interpreted as an integer #60

xandyxor opened this issue Jan 19, 2021 · 0 comments

Comments

@xandyxor
Copy link

File "bled112_scanner.py", line 372, in bgapi_parse
for i in range((len(this_field) - 1) / 2):
TypeError: 'float' object cannot be interpreted as an integer

1/2
0 #Python2
0.5 #Python3

so for i in range((len(this_field) - 1) / 2):
Should be changed to
for i in range((len(this_field) - 1) // 2):

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

No branches or pull requests

1 participant