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
In this code from goose.images.extractors.UpgradedImageExtractor.get_images_bytesize_match:
if (bytes == 0 or bytes > self.images_min_bytes) \ and bytes < MAX_BYTES_SIZE: good_images.append(image)
if the image retrieved has a length of 0 bytes (bytes == 0), it will be added to good_images. This seems like a bug, no?
bytes == 0
The text was updated successfully, but these errors were encountered:
it seems do you have a real world exemple ?
Sorry, something went wrong.
No, I don't have a real world example. It was just something I saw while looking at the code.
No branches or pull requests
In this code from goose.images.extractors.UpgradedImageExtractor.get_images_bytesize_match:
if the image retrieved has a length of 0 bytes (
bytes == 0
), it will be added to good_images. This seems like a bug, no?The text was updated successfully, but these errors were encountered: