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

fromhexstring() needs integer division. #9

Open
Tom-E-Mason opened this issue Jan 29, 2021 · 0 comments
Open

fromhexstring() needs integer division. #9

Tom-E-Mason opened this issue Jan 29, 2021 · 0 comments

Comments

@Tom-E-Mason
Copy link

Calling str(len(hexstring) / 4) in the second argument of format() causes an error as "Precision not allowed in integer format specifier" (VS error message). Float division returns a float value which format() can't use.

Possible fixes:

  • str(len(hexstring) // 4)
  • str(int(len(hexstring)) / 4)
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