We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If the length of a GTIN code isn't 10, currently, checkdigit treats it as if it were 12 digits. This can lead to false results for other lengths.
This is the line in question:
checkdigit/checkdigit/gtin.py
Line 72 in a85a0a8
We always multiply by 6, which assumes the length is 12.
The text was updated successfully, but these errors were encountered:
6604dc5
Set fixed ISBN-13 weight length
7a023d9
See #71
No branches or pull requests
If the length of a GTIN code isn't 10, currently, checkdigit treats it as if it were 12 digits. This can lead to false results for other lengths.
This is the line in question:
checkdigit/checkdigit/gtin.py
Line 72 in a85a0a8
We always multiply by 6, which assumes the length is 12.
The text was updated successfully, but these errors were encountered: