-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Fix corrupt floodfill #4948
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
Fix corrupt floodfill #4948
Conversation
Hello @FirefoxMetzger! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found: There are currently no PEP 8 issues detected in this Pull Request. Cheers! 🍻 Comment last updated at 2020-09-07 12:16:10 UTC |
@@ -219,7 +219,7 @@ def test_selem(): | |||
[0, 255, 255, 255, 255, 255], | |||
[0, 255, 255, 255, 255, 255], | |||
[0, 255, 255, 255, 255, 255], | |||
[0, 0, 0, 0, 0, 0]], dtype=np.uint8) | |||
[0, 0, 0, 0, 0, 0]], dtype=np.uint8) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please revert this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[0, 0, 0, 0, 0, 0]], dtype=np.uint8) | |
[0, 0, 0, 0, 0, 0]], dtype=np.uint8) |
[255, 255, 255, 255, 255, 0], | ||
[255, 255, 255, 255, 255, 0], | ||
[255, 255, 255, 255, 255, 0], | ||
[255, 255, 255, 255, 255, 0]], dtype=np.uint8) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And here. (Sorry, this suggestion is harder to do on the web interface 😬)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@FirefoxMetzger other than some very minor formatting/naming suggestions, this is ready for me!
The Travis failures appear unrelated. One is a sporadic failure in the rank filters tests, the other is the mac build hanging which we have encountered elsewhere.
Also approving once's @jni's small comments have been addressed. |
@jni @emmanuelle done. Let's wait for the tests to pass and then this should be good. |
@jni LGTM |
Thank you @FirefoxMetzger , merging! |
@meeseeksdev backport to v0.17.x |
Owee, I'm MrMeeseeks, Look at me. There seem to be a conflict, please backport manually. Here are approximate instructions:
And apply the correct labels and milestones. Congratulation you did some good work ! Hopefully your backport PR will be tested by the continuous integration and merged soon! If these instruction are inaccurate, feel free to suggest an improvement. |
Dang. LOL |
Description
Closes: #4918
For reviewers
later.
__init__.py
.doc/release/release_dev.rst
.